From 67adb599abd22662e4cbfa9f5133e0ea02377e62 Mon Sep 17 00:00:00 2001 From: sketchyphoenix Date: Tue, 31 Mar 2009 15:08:57 +0000 Subject: [PATCH] (bugreport:2836) A correction of a typographical error with GM command logging. git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@13646 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/atcommand.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 591a8ca8ee..61557fd515 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -9047,7 +9047,7 @@ bool is_atcommand(const int fd, struct map_session_data* sd, const char* message //Log Charcommands if( log_config.gm && info->level2 >= log_config.gm && *atcmd_msg == charcommand_symbol && ssd != NULL ) - log_atcommand(ssd, message); + log_atcommand(sd, message); return true; }