X-Git-Url: http://git.treefish.org/~alex/shutbox.git/blobdiff_plain/25f4f9302ebf442544346d123eab4d8c8ed26044..8fe5c4eee79c73b0409d4e305e18b51b790e028c:/src/game.py?ds=inline diff --git a/src/game.py b/src/game.py index 5e2fe70..5fc133a 100644 --- a/src/game.py +++ b/src/game.py @@ -10,15 +10,19 @@ class Game: def dice(self): if not self._diced: self._diced = [random.randint(1, 6), random.randint(1, 6)] + self._diced.sort() for rods in [ self._diced, [ abs(self._diced[0] - self._diced[1]) ], [ self._diced[0] + self._diced[1] ] ]: if self._can_be_shut(rods): self._options.append(rods) - def get_dice(self): + def get_diced(self): return self._diced + def get_shutable(self): + return self._shutable + def get_options(self): return self._options