From 6e49378bc857a344c5d4edbe03ca16dbc03eb203 Mon Sep 17 00:00:00 2001 From: Ashnal Date: Sun, 25 May 2025 18:30:40 -0400 Subject: [PATCH] Fix botched tally rate increase --- src/y_inter.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/y_inter.cpp b/src/y_inter.cpp index 095484090..3857b37a3 100644 --- a/src/y_inter.cpp +++ b/src/y_inter.cpp @@ -2175,7 +2175,9 @@ void Y_Ticker(void) // Basic bitch points if (data.increase[data.num[q]]) { - if (std::max(0,data.increase[data.num[q]]-3)) + data.increase[data.num[q]] = std::max(data.increase[data.num[q]] - 3, 0); + + if (data.increase[data.num[q]] != 0) kaching = false; } }