- self._diced = [random.randint(0, 6), random.randint(0, 6)]
- for rods in [ self._dice,
- [ abs(self._dice[0] - self._dice[1]) ],
- [ self._dice[0] + self._dice[1] ] ]:
+ 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] ] ]: