diff options
author | Fernanda Monteiro <crie.fernanda@gmail.com> | 2015-02-22 22:06:31 -0300 |
---|---|---|
committer | Fernanda Monteiro <crie.fernanda@gmail.com> | 2015-02-22 22:06:31 -0300 |
commit | 67563b5229b55655ed5f882a66f0ecdb38e2355e (patch) | |
tree | c48d64296155e23cb9fe844442d958e57e490ea5 | |
parent | af083886bb63fa9e3ea7f9ce2fb13aaefd6ea84f (diff) | |
download | manamarket-67563b5229b55655ed5f882a66f0ecdb38e2355e.tar.gz manamarket-67563b5229b55655ed5f882a66f0ecdb38e2355e.tar.bz2 manamarket-67563b5229b55655ed5f882a66f0ecdb38e2355e.tar.xz manamarket-67563b5229b55655ed5f882a66f0ecdb38e2355e.zip |
Update packet_out.py
Just a TODO
-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) |