commit 5112e4980dea84b752eccd0b94632c94b2d5aecb
parent 91f14ffbe962b53c6dc73148b72cd656e23521fe
Author: Juan F. Meleiro <juan@juanmeleiro.mat.br>
Date: Mon, 27 May 2024 10:39:25 +0200
Remove fall logic
At some point this was removed, but I hadn't noticed.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/absurdor b/absurdor
@@ -162,7 +162,7 @@ if args.command == "report" then
-- rule was changed so that the Boulder falls to zero
-- if it was not pushed the previous week. However, the
-- change is not retroactive; hence the magic number.
- height = (height + 1) % 100
+ height = (height + 1)
else
height = 1
end