From 5b6617147652ba6b6fdfbfcf1e6bf8187dd195eb Mon Sep 17 00:00:00 2001 From: Miguel Angel Astor Romero Date: Wed, 16 Jan 2013 08:06:58 -0430 Subject: [PATCH] Fixed a wrong call to player.PLAYERS. --- player.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/player.py b/player.py index a41886e..ff4c871 100644 --- a/player.py +++ b/player.py @@ -57,4 +57,4 @@ class Player: PLAYERS = {} for i in range(constants.NUM_PLAYERS): - players[i + 1] = Player(i + 1) + PLAYERS[i + 1] = Player(i + 1)