summaryrefslogtreecommitdiff
path: root/src/map/atcommand.c
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2016-02-28 22:18:29 +0100
committerHaru <haru@dotalux.com>2016-02-28 22:22:31 +0100
commit905b59d85b790ea57198c47e249690094b296bda (patch)
treead415f95a8ef0bc71a8a0e4aebd7828fad52a87a /src/map/atcommand.c
parent38df89621f9e5b4196a91f8361b4493247f41bd3 (diff)
downloadhercules-905b59d85b790ea57198c47e249690094b296bda.tar.gz
hercules-905b59d85b790ea57198c47e249690094b296bda.tar.bz2
hercules-905b59d85b790ea57198c47e249690094b296bda.tar.xz
hercules-905b59d85b790ea57198c47e249690094b296bda.zip
Changed mob mode field to 32 bit, for future expansion
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r--src/map/atcommand.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c
index 839fb6ce0..14eab56e0 100644
--- a/src/map/atcommand.c
+++ b/src/map/atcommand.c
@@ -7919,7 +7919,7 @@ ACMD(clone) {
y = sd->bl.y;
}
- if ((x = mob->clone_spawn(pl_sd, sd->bl.m, x, y, "", master, 0, flag?1:0, 0)) > 0) {
+ if ((x = mob->clone_spawn(pl_sd, sd->bl.m, x, y, "", master, MD_NONE, flag?1:0, 0)) > 0) {
clif->message(fd, msg_fd(fd,128+flag*2)); // Evil Clone spawned. Clone spawned. Slave clone spawned.
return true;
}