X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;ds=sidebyside;f=naja%2Fgameboard.py;h=d62684924a514847634707ff038250de5ed5f33f;hb=0cef06f581d48315a59a19ac06ca1d2be14cbb4c;hp=7e8f27323aa54f4e9fa4a05e3b1dae6cbd82a96a;hpb=de49aa72249f2fded44e53831f5680d9a48d7f5b;p=naja.git diff --git a/naja/gameboard.py b/naja/gameboard.py index 7e8f273..d626849 100644 --- a/naja/gameboard.py +++ b/naja/gameboard.py @@ -2,7 +2,7 @@ from random import choice from naja.constants import( BITS, DIRECTION_BITS, CONDITION_BITS, PLAYER_DEFAULTS, - MOVE, ACT, EXAMINE) + ACT, EXAMINE) from naja.player import Player from naja import actions @@ -20,7 +20,7 @@ class GameBoard(object): self.locations = [item.copy() for item in state['locations']] self.player = player self.board_locations = board_locations - self.player_mode = MOVE + self.player_mode = EXAMINE @classmethod def new_game(cls, locations_definition, @@ -152,7 +152,7 @@ class GameBoard(object): if new_mode == self.player_mode: raise RuntimeError("Inconsistent state. Setting mode %s to itself" % self.player_mode) - elif new_mode in (MOVE, ACT, EXAMINE): + elif new_mode in (ACT, EXAMINE): self.player_mode = new_mode else: raise RuntimeError("Illegal player mode %s" % self.player_mode)