summaryrefslogtreecommitdiff
path: root/src/map/atcommand.c
diff options
context:
space:
mode:
authorultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-01-07 07:48:04 +0000
committerultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-01-07 07:48:04 +0000
commitf4a6909849243c3e4776ddee4de962224e80ac9a (patch)
tree7f1d512bbc95f38587d8d4acb6950dd3fda0a35a /src/map/atcommand.c
parent9d77a645e0c7d41683c6f478594be342fca27e99 (diff)
downloadhercules-f4a6909849243c3e4776ddee4de962224e80ac9a.tar.gz
hercules-f4a6909849243c3e4776ddee4de962224e80ac9a.tar.bz2
hercules-f4a6909849243c3e4776ddee4de962224e80ac9a.tar.xz
hercules-f4a6909849243c3e4776ddee4de962224e80ac9a.zip
- re-added the duplicit nj/gs name messages in msg_athena
- renamed atcommand_sub to is_atcommand_sub (charcommand too) - reformatted conf-tmpl's comments a bit - and a fix to the stable changelog to make my last commit more descriptive git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9625 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r--src/map/atcommand.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c
index 06fa629e5..bfe70145e 100644
--- a/src/map/atcommand.c
+++ b/src/map/atcommand.c
@@ -778,7 +778,7 @@ int get_atcommand_level(const AtCommandType type) {
}
AtCommandType
-atcommand_sub(const int fd, struct map_session_data* sd, const char* str, int gmlvl) {
+is_atcommand_sub(const int fd, struct map_session_data* sd, const char* str, int gmlvl) {
AtCommandInfo info;
AtCommandType type;
@@ -852,7 +852,7 @@ is_atcommand(const int fd, struct map_session_data* sd, const char* message) {
if (!*str)
return AtCommand_None;
- return atcommand_sub(fd,sd,str,pc_isGM(sd));
+ return is_atcommand_sub(fd,sd,str,pc_isGM(sd));
}
/*==========================================