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