diff options
-rw-r--r-- | net/packet_out.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/packet_out.py b/net/packet_out.py index 2a73a59..873f087 100644 --- a/net/packet_out.py +++ b/net/packet_out.py @@ -15,6 +15,8 @@ def whisper(nick, message): def chat(text): chat_packet = PacketOut(CMSG_CHAT_MESSAGE) + #TODO Find another automated manner to get ManaMarket name (previous didn't work either) + # Maybe a temp solution would be setting as a variable in config.py mes = "ManaMarket"+" : "+text chat_packet.write_int16(len(mes) + 4 + 1) # chat_packet = PacketOut(CMSG_CHAT_MESSAGE) |