diff options
author | Matt Strapp <strap012@umn.edu> | 2021-04-28 16:14:03 -0500 |
---|---|---|
committer | Matt Strapp <strap012@umn.edu> | 2021-04-28 16:14:03 -0500 |
commit | 5f44f3b84c39154599924e3a79b0f9a1ac0d08a8 (patch) | |
tree | 8bf35619c9b1ce4ee103de14d9c4b756013b6029 /python/GameState.py | |
parent | Merge branch 'master' of https://github.umn.edu/smit9523/CSCI-4511W-Project (diff) | |
download | csci4511w-5f44f3b84c39154599924e3a79b0f9a1ac0d08a8.tar csci4511w-5f44f3b84c39154599924e3a79b0f9a1ac0d08a8.tar.gz csci4511w-5f44f3b84c39154599924e3a79b0f9a1ac0d08a8.tar.bz2 csci4511w-5f44f3b84c39154599924e3a79b0f9a1ac0d08a8.tar.lz csci4511w-5f44f3b84c39154599924e3a79b0f9a1ac0d08a8.tar.xz csci4511w-5f44f3b84c39154599924e3a79b0f9a1ac0d08a8.tar.zst csci4511w-5f44f3b84c39154599924e3a79b0f9a1ac0d08a8.zip |
Uncomment thing essential for choosing legal moves
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 |