From d08a872cab44b04523952034a84571b23d3d5c1c Mon Sep 17 00:00:00 2001
From: Anu <barrychahal@gmail.com>
Date: Sun, 20 Jun 2021 03:03:22 +0000
Subject: [PATCH] Slaves who can't walk don't walk around

---
 src/endWeek/saLongTermEffects.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/endWeek/saLongTermEffects.js b/src/endWeek/saLongTermEffects.js
index a7f1cbbdc61..2b07ffdd443 100644
--- a/src/endWeek/saLongTermEffects.js
+++ b/src/endWeek/saLongTermEffects.js
@@ -1193,7 +1193,7 @@ App.SlaveAssignment.longTermEffects = (function() {
 				}
 			} else if (slave.bellyFluid >= 1500) {
 				if (slave.fetish === "humiliation") {
-					r.push(`Having to walk around with a belly full of`);
+					r.push(`Having to ${canWalk(slave) ? `walk` : `lounge`} around with a belly full of`);
 					switch (slave.inflationType) {
 						case "cum":
 						case "food":
@@ -1218,7 +1218,7 @@ App.SlaveAssignment.longTermEffects = (function() {
 						}
 					}
 				} else {
-					r.push(`Having to walk around with a belly full of`);
+					r.push(`Having to ${canWalk(slave) ? `walk` : `lounge`} around with a belly full of`);
 					switch (slave.inflationType) {
 						case "cum":
 						case "food":
-- 
GitLab