diff options
author | sketchyphoenix <sketchyphoenix@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-12-23 02:06:21 +0000 |
---|---|---|
committer | sketchyphoenix <sketchyphoenix@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-12-23 02:06:21 +0000 |
commit | 9c2a0d9db60a698035ec6821239c20ab81b148ca (patch) | |
tree | e57b0962eefe666f4d146e9fed4b125d21f309a8 /src/map/map.c | |
parent | 49a14a494e831d32f6a0cfb72c7cff5bbbd675e7 (diff) | |
download | hercules-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/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 dfefa7671..8c5e227db 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -2934,7 +2934,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( n == 5 && strcmpi("admin",type) == 0 ){ - if( !is_atcommand_sub(sd.fd,&sd,command,99,sd.status.name) ) + if( !is_atcommand_sub(sd.fd,&sd,command,99) ) ShowInfo("Console: not atcommand\n"); } else if( n == 2 && strcmpi("server",type) == 0 ){ if( strcmpi("shutdown",command) == 0 || |