diff options
Diffstat (limited to 'python/GameState.py')
-rw-r--r-- | python/GameState.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/GameState.py b/python/GameState.py index 9e780a9..6047f8d 100644 --- a/python/GameState.py +++ b/python/GameState.py @@ -81,7 +81,7 @@ class DotsAndBoxesState(GameState): def play_move(self, move): r, c, o = move - #assert move in self.get_moves() + assert move in self.get_moves() # check if this move makes a box makes_box = False |