diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-01-07 07:48:04 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-01-07 07:48:04 +0000 |
commit | f4a6909849243c3e4776ddee4de962224e80ac9a (patch) | |
tree | 7f1d512bbc95f38587d8d4acb6950dd3fda0a35a /src/map/map.c | |
parent | 9d77a645e0c7d41683c6f478594be342fca27e99 (diff) | |
download | hercules-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/map.c')
-rw-r--r-- | src/map/map.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/map.c b/src/map/map.c index 1032472cc..d580dd09c 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -3278,7 +3278,7 @@ int parse_console(char *buf) { ShowInfo("Type of command: %s || Command: %s || Map: %s Coords: %d %d\n",type,command,map,x,y); if ( strcmpi("admin",type) == 0 && n == 5 ) { - if( atcommand_sub(sd.fd,&sd,command,99) == AtCommand_None ) + if( is_atcommand_sub(sd.fd,&sd,command,99) == AtCommand_None ) printf("Console: not atcommand\n"); } else if ( strcmpi("server",type) == 0 && n == 2 ) { if ( strcmpi("shutdown", command) == 0 || strcmpi("exit",command) == 0 || strcmpi("quit",command) == 0 ) { |