From d9b13d89762cbd572662e7732b32d1cb90a66324 Mon Sep 17 00:00:00 2001 From: Flancian <0@flancia.org> Date: Sun, 15 Oct 2023 01:26:34 +0200 Subject: [PATCH] autopushed --- bin/dice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}]].")