diff options
author | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2005-01-02 23:45:54 +0000 |
---|---|---|
committer | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2005-01-02 23:45:54 +0000 |
commit | 3d961c0b59fb7f325d73277741aeebedbd1d9746 (patch) | |
tree | a7813b336b7198bcdc3de1a1ad1a0b79c6fdf784 /src/map/atcommand.c | |
parent | 1c822860e3693800d5a621fd0d0962ad9e1d6ffd (diff) | |
download | hercules-3d961c0b59fb7f325d73277741aeebedbd1d9746.tar.gz hercules-3d961c0b59fb7f325d73277741aeebedbd1d9746.tar.bz2 hercules-3d961c0b59fb7f325d73277741aeebedbd1d9746.tar.xz hercules-3d961c0b59fb7f325d73277741aeebedbd1d9746.zip |
fixed respawn delay of Zenorcs 3 sec -> default 5 sec
uncommented ATCommandLog entry (it works.)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@897 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 2f7cdd995..bf5d434c6 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -748,8 +748,8 @@ is_atcommand(const int fd, struct map_session_data* sd, const char* message, int } // ToDo: Fix Logs :) - //if((log_config.gm) && (info.level >= log_config.gm)) - // log_atcommand(sd, message); + if((log_config.gm) && (info.level >= log_config.gm)) + log_atcommand(sd, message); return info.type; } |