diff --git a/bin/dice.py b/bin/dice.py index 813a32235..cabe8c217 100755 --- a/bin/dice.py +++ b/bin/dice.py @@ -36,7 +36,7 @@ def rand(n): for i in range(2, n+1): r = random.randint(1, i) if i == 2: - proof.append(f"You throw a fair coin and it lands [[{bool(r-1)}]].") + proof.append(f"You throw a fair coin and it lands [[{bool(r-1) and 'heads' or 'tails'}]].") else: proof.append(f"You throw a die of [[{i}]] sides and it comes up [[{r}]].")