From 4d408af2ea25c124d60f1e78d27ee5a1bcc97d85 Mon Sep 17 00:00:00 2001 From: kopareigns <kopareigns@gmail.com> Date: Mon, 11 Dec 2017 22:48:19 -0500 Subject: [PATCH] Removed clamp on cash --- src/uncategorized/persBusiness.tw | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/uncategorized/persBusiness.tw b/src/uncategorized/persBusiness.tw index 49881501665..bd6d476aad6 100644 --- a/src/uncategorized/persBusiness.tw +++ b/src/uncategorized/persBusiness.tw @@ -386,7 +386,7 @@ <<elseif $proclamationCurrency == "reputation">> <<set $rep = Math.clamp($rep - 4000,0,20000)>> <<else>> - <<set $cash = Math.clamp($cash - 8000,0,20000)>> + <<set $cash -= 8000>> <</if>> <<elseif $proclamationType == "crime">> force the arrest of many suspected citizens. Their personal power allowed them to avoid justice for a long time, but this day is their end. @@.green;Your crime greatly decreased@@. @@ -396,7 +396,7 @@ <<elseif $proclamationCurrency == "reputation">> <<set $rep = Math.clamp($rep - 4000,0,20000)>> <<else>> - <<set $cash = Math.clamp($cash - 8000,0,20000)>> + <<set $cash -= 8000>> <</if>> <</if>> <<set $proclamationsCooldown = 4, $personalAttention = "business">> -- GitLab