summaryrefslogtreecommitdiff
path: root/src/map/script.c
diff options
context:
space:
mode:
authorsketchyphoenix <sketchyphoenix@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-12-23 02:06:21 +0000
committersketchyphoenix <sketchyphoenix@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-12-23 02:06:21 +0000
commit9c2a0d9db60a698035ec6821239c20ab81b148ca (patch)
treee57b0962eefe666f4d146e9fed4b125d21f309a8 /src/map/script.c
parent49a14a494e831d32f6a0cfb72c7cff5bbbd675e7 (diff)
downloadhercules-9c2a0d9db60a698035ec6821239c20ab81b148ca.tar.gz
hercules-9c2a0d9db60a698035ec6821239c20ab81b148ca.tar.bz2
hercules-9c2a0d9db60a698035ec6821239c20ab81b148ca.tar.xz
hercules-9c2a0d9db60a698035ec6821239c20ab81b148ca.zip
* Added a few missing atcommands.
* Added more commands to configurations (bugreport:2565) * Added a missing charcommand symbol config to atcommand configs. * GM command configs under the old format will have a warning printed back to the console as being deprecated. * Other fixes/cleaning partially resolving bugreport:2549 git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13409 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/script.c')
-rw-r--r--src/map/script.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/script.c b/src/map/script.c
index 64047d46d..a40a50bd7 100644
--- a/src/map/script.c
+++ b/src/map/script.c
@@ -10685,7 +10685,7 @@ BUILDIN_FUNC(atcommand)
cmd++;
}
- is_atcommand_sub(fd, sd, cmd, 99, sd->status.name);
+ is_atcommand_sub(fd, sd, cmd, 99);
return 0;
}
@@ -10729,7 +10729,7 @@ BUILDIN_FUNC(charcommand)
sprintf(output, "%s %s", cmd, param);
memcpy(temp, output, sizeof(output));
message = temp;
- is_atcommand_sub(fd,sd,message,99,sd->status.name);
+ is_atcommand_sub(fd,sd,message,99);
}
}
}