Merge pull request #394 from Niichan/fix_connection_notice

modules/notify_connect: Fixed syntax on attach/detach messages
This commit is contained in:
Alexey Sokolov
2013-08-16 15:12:52 -07:00

View File

@@ -26,7 +26,7 @@ public:
}
virtual void OnClientDisconnect() {
SendAdmins(m_pUser->GetUserName() + " detached (gone: " + m_pClient->GetRemoteIP() + ")");
SendAdmins(m_pUser->GetUserName() + " detached (from " + m_pClient->GetRemoteIP() + ")");
}
private: