Commit 41f5ba8c authored by mercury233's avatar mercury233

log player chat

parent 1d22e165
......@@ -227,7 +227,10 @@ namespace WindBot.Game
private void OnChat(BinaryReader packet)
{
packet.ReadInt16(); // player
packet.ReadUnicode(256); // message
string message = packet.ReadUnicode(256);
string myName = _room.Position == 0 ? _room.Names[0] : _room.Names[1];
string otherName = _room.Position == 0 ? _room.Names[1] : _room.Names[0];
Logger.WriteLine(otherName + " say to " + myName + ": " + message);
}
private void OnRetry(BinaryReader packet)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment