Revert "abort decoding query string on bad values"

This reverts commit 4809beaad7.
This commit is contained in:
polaris
2014-05-25 08:22:48 -04:00
parent 4809beaad7
commit 684e2a2c94

View File

@@ -5,10 +5,6 @@ def parse_gamespy_message(message):
messages = {}
msg = message
if len(msg) == 0 or msg[0] != '\\':
# bad command, return nothing
return "", ""
while len(msg) > 0 and msg[0] == '\\' and "\\final\\" in msg:
# Find the command
# Don't search for more commands if there isn't a \final\, save the left over for the next packet