diff options
author | shennetsind <ind@henn.et> | 2013-06-27 18:47:04 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-06-27 18:47:04 -0300 |
commit | 7ca4dfb8cb8df6a5900ec52d24cb3c8238ae1ac0 (patch) | |
tree | 4ae10775271a02db68ddfbfee6a88a6e4f7a4e10 /src/map | |
parent | 897f598ab7ea2235d551081f54328ee69970f731 (diff) | |
download | hercules-7ca4dfb8cb8df6a5900ec52d24cb3c8238ae1ac0.tar.gz hercules-7ca4dfb8cb8df6a5900ec52d24cb3c8238ae1ac0.tar.bz2 hercules-7ca4dfb8cb8df6a5900ec52d24cb3c8238ae1ac0.tar.xz hercules-7ca4dfb8cb8df6a5900ec52d24cb3c8238ae1ac0.zip |
Follow up f98484699e820d8a6cd2eb656244a9178b1ecc61
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/atcommand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index f1b4a3ed6..7b0d45199 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -9053,7 +9053,7 @@ ACMD(channel) { return false; } - if( sub2[0] == '\0' || ( pl_sd = map_nick2sd(sub2) ) == NULL ) { + if( sub2[0] == '\0' || ( pl_sd = iMap->nick2sd(sub2) ) == NULL ) { sprintf(atcmd_output, msg_txt(1434), sub2);// Player '%s' was not found clif->message(fd, atcmd_output); return false; |