diff options
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 07dc0d3a4..cc6e21874 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -7971,9 +7971,9 @@ int atcommand_clone(const int fd, struct map_session_data* sd, const char* comma return 0; } - if (strcmpi(command, "@clone") == 0) + if (strcmpi(command+1, "clone") == 0) flag = 1; - else if (strcmpi(command, "@slaveclone") == 0) { + else if (strcmpi(command+1, "slaveclone") == 0) { flag = 2; master = sd->bl.id; if (battle_config.atc_slave_clone_limit |