diff --git a/src/interaction/policies/policies.js b/src/interaction/policies/policies.js
index 080c8f68909abb5ff91c84971e63ca5d73d9a51c..3192492153e0961edebb26855fe63ae65f567439 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")) {