From 1ad4ae638b1f7c65ae1f8abcc10936111d1ce734 Mon Sep 17 00:00:00 2001
From: pregmodfan <pregmodfan@cock.li>
Date: Sat, 8 Dec 2018 12:37:57 +0200
Subject: [PATCH] > to >=

---
 src/SecExp/attackHandler.tw   | 4 ++--
 src/SecExp/rebellionReport.tw | 8 ++++----
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/SecExp/attackHandler.tw b/src/SecExp/attackHandler.tw
index 6132d17c348..8de3a00af1d 100644
--- a/src/SecExp/attackHandler.tw
+++ b/src/SecExp/attackHandler.tw
@@ -312,7 +312,7 @@
 	<<if $Bodyguard.butt >= 6>>
 		<<set _woundChance += 1>>
 	<</if>>
-	<<if $Bodyguard.belly > 6000>>
+	<<if $Bodyguard.belly >= 6000>>
 		<<set _woundChance += 1>>
 	<</if>>
 	<<if $Bodyguard.dick >= 8>>
@@ -440,7 +440,7 @@
 	<<if $HeadGirl.butt >= 6>>
 		<<set _woundChance += 1>>
 	<</if>>
-	<<if $HeadGirl.belly > 10000>>
+	<<if $HeadGirl.belly >= 10000>>
 		<<set _woundChance += 1>>
 	<</if>>
 	<<if $HeadGirl.dick >= 8>>
diff --git a/src/SecExp/rebellionReport.tw b/src/SecExp/rebellionReport.tw
index 96da54bcebd..68b04423761 100644
--- a/src/SecExp/rebellionReport.tw
+++ b/src/SecExp/rebellionReport.tw
@@ -640,7 +640,7 @@
 			<<if $Concubine.butt >= 6>>
 				<<set _woundChance += 1>>
 			<</if>>
-			<<if $Concubine.belly > 10000>> 
+			<<if $Concubine.belly >= 10000>> 
 				<<set _woundChance += 1>>
 			<</if>>
 			<<if $Concubine.dick >= 8>>
@@ -703,7 +703,7 @@
 		<<if $Bodyguard.butt >= 6>>
 			<<set _woundChance += 1>>
 		<</if>>
-		<<if $Bodyguard.belly > 6000>>
+		<<if $Bodyguard.belly >= 6000>>
 			<<set _woundChance += 1>>
 		<</if>>
 		<<if $Bodyguard.dick >= 8>>
@@ -810,7 +810,7 @@
 			<<if $Concubine.butt >= 6>>
 				<<set _woundChance += 1>>
 			<</if>>
-			<<if $Concubine.belly > 10000>>
+			<<if $Concubine.belly >= 10000>>
 				<<set _woundChance += 1>>
 			<</if>>
 			<<if $Concubine.dick >= 8>>
@@ -918,7 +918,7 @@
 			<<if $Concubine.butt >= 6>>
 				<<set _woundChance += 1>>
 			<</if>>
-			<<if $Concubine.belly > 10000>>
+			<<if $Concubine.belly >= 10000>>
 				<<set _woundChance += 1>>
 			<</if>>
 			<<if $Concubine.dick >= 8>>
-- 
GitLab