summaryrefslogtreecommitdiff
path: root/src/map/atcommand.c
diff options
context:
space:
mode:
authorMadCamel <madcamel@gmail.com>2009-10-06 19:35:25 -0400
committerMadCamel <madcamel@gmail.com>2009-10-06 19:35:25 -0400
commit29844ce5e2cd043551b46c1cd7bf3a36e357e3c6 (patch)
treebf42e1c857c08fce52ff5bcda8f74e27bdcd9638 /src/map/atcommand.c
parent592170e732fd5b75cf1447ed33e8999541048db8 (diff)
parent40792ad45c1929f999602dd386483ce99b0ed30a (diff)
downloadtmwa-29844ce5e2cd043551b46c1cd7bf3a36e357e3c6.tar.gz
tmwa-29844ce5e2cd043551b46c1cd7bf3a36e357e3c6.tar.bz2
tmwa-29844ce5e2cd043551b46c1cd7bf3a36e357e3c6.tar.xz
tmwa-29844ce5e2cd043551b46c1cd7bf3a36e357e3c6.zip
Merge branch 'master' of git://gitorious.org/tmw-eathena/mainline
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r--src/map/atcommand.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c
index 510026b..3668d98 100644
--- a/src/map/atcommand.c
+++ b/src/map/atcommand.c
@@ -241,7 +241,6 @@ static AtCommandInfo atcommand_info[] = {
{ AtCommand_Kill, "@kill", 60, atcommand_kill },
{ AtCommand_Alive, "@alive", 60, atcommand_alive },
{ AtCommand_Kami, "@kami", 40, atcommand_kami },
- { AtCommand_KamiB, "@kamib", 40, atcommand_kami },
{ AtCommand_Heal, "@heal", 40, atcommand_heal },
{ AtCommand_Item, "@item", 60, atcommand_item },
{ AtCommand_ItemReset, "@itemreset", 40, atcommand_itemreset },
@@ -1732,7 +1731,7 @@ int atcommand_kami(
}
sscanf(message, "%199[^\n]", output);
- intif_GMmessage(output, strlen(output) + 1, (*(command + 5) == 'b') ? 0x10 : 0);
+ intif_GMmessage(output, strlen(output) + 1, 0);
return 0;
}