diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-05-03 14:15:20 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-05-03 14:15:20 +0000 |
commit | 2e6efcc4c718d89bf832cd10b5261add097c8bf6 (patch) | |
tree | aa070e029f64fc8fb9b1e2ff2c3d31702dafe816 /src/map/atcommand.c | |
parent | 6395ddae721ba873428d1a82f167aa4ed49ac0b5 (diff) | |
download | hercules-2e6efcc4c718d89bf832cd10b5261add097c8bf6.tar.gz hercules-2e6efcc4c718d89bf832cd10b5261add097c8bf6.tar.bz2 hercules-2e6efcc4c718d89bf832cd10b5261add097c8bf6.tar.xz hercules-2e6efcc4c718d89bf832cd10b5261add097c8bf6.zip |
- Corrected @whomap directly invoking msg_table[] rather than msg_txt()
- Guessed where the pet data goes in spawn packet 0x7c
- Updated Charge Attack's state from none to move_enable.
- Made tomahawk an NPC_SKILL so that it may not be plagiarized.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6459 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index d15b04937..92b27e103 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -1835,11 +1835,11 @@ int atcommand_whomap( }
if (count == 0)
- sprintf(atcmd_output, msg_table[54], map[map_id].name); // No player found in map '%s'.
+ sprintf(atcmd_output, msg_txt(54), map[map_id].name); // No player found in map '%s'.
else if (count == 1)
- sprintf(atcmd_output, msg_table[55], map[map_id].name); // 1 player found in map '%s'.
+ sprintf(atcmd_output, msg_txt(55), map[map_id].name); // 1 player found in map '%s'.
else {
- sprintf(atcmd_output, msg_table[56], count, map[map_id].name); // %d players found in map '%s'.
+ sprintf(atcmd_output, msg_txt(56), count, map[map_id].name); // %d players found in map '%s'.
}
clif_displaymessage(fd, atcmd_output);
|