Fixed a wrong call to player.PLAYERS.

This commit is contained in:
2013-01-16 08:06:58 -04:30
parent 262abf2544
commit 5b66171476

View File

@@ -57,4 +57,4 @@ class Player:
PLAYERS = {} PLAYERS = {}
for i in range(constants.NUM_PLAYERS): for i in range(constants.NUM_PLAYERS):
players[i + 1] = Player(i + 1) PLAYERS[i + 1] = Player(i + 1)