chatlog_write_pm doesn't provide a space between the username being messaged and the message itself.
This patch fixes it.
Code: Select all
--- ePlayer.cpp.old     2009-09-22 13:25:37.000000000 -0700
+++ ePlayer.cpp 2009-09-22 13:25:53.000000000 -0700
@@ -2900,7 +2900,7 @@
             //send /msg to chatlog
             if (se_chatLogWritePM ){
                 tString str;
-                str << p->GetUserName() << " /msg " << receiver->GetUserName() << msg_core;
+                str << p->GetUserName() << " /msg " << receiver->GetUserName() << " " << msg_core;
                 se_SaveToChatLog(str);
             }
         }

