From 4ff61fcdaa84e874c862374976bf06bb1f367b7f Mon Sep 17 00:00:00 2001 From: Sworddragon Date: Thu, 6 Jan 2011 00:51:31 +0100 Subject: Made compiling process Python 3 compatible --- datasrc/network.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'datasrc/network.py') diff --git a/datasrc/network.py b/datasrc/network.py index 61c69365..9b153016 100644 --- a/datasrc/network.py +++ b/datasrc/network.py @@ -4,7 +4,7 @@ Emotes = ["NORMAL", "PAIN", "HAPPY", "SURPRISE", "ANGRY", "BLINK"] PlayerStates = ["UNKNOWN", "PLAYING", "IN_MENU", "CHATTING"] GameFlags = ["TEAMS", "FLAGS"] -Emoticons = [str(x) for x in xrange(1,16)] +Emoticons = [str(x) for x in range(1,16)] Powerups = ["HEALTH", "ARMOR", "WEAPON", "NINJA"] -- cgit 1.4.1