From 133e23a32c347f4f196622cc666cf7bcd19b31cd Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Thu, 17 Sep 2020 15:54:09 -0400 Subject: [PATCH] rep fix --- src/interaction/policies/policies.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/interaction/policies/policies.js b/src/interaction/policies/policies.js index 080c8f68909..3192492153e 100644 --- a/src/interaction/policies/policies.js +++ b/src/interaction/policies/policies.js @@ -144,7 +144,7 @@ globalThis.policy = function(category) { link = App.UI.DOM.link( "Repeal", () => { - if (V.rep > 1000) { + if (V.rep >= 1000) { _.set(V, policyVariable, 0); applyCost(); if (p.hasOwnProperty("onRepeal")) { @@ -179,7 +179,7 @@ globalThis.policy = function(category) { link = App.UI.DOM.link( "Implement", () => { - if (V.rep > 1000) { + if (V.rep >= 1000) { _.set(V, policyVariable, enable); applyCost(); if (p.hasOwnProperty("onImplementation")) { -- GitLab