From 59c3dae90310dedfab49d96c3e44829d75ff77c0 Mon Sep 17 00:00:00 2001
From: Anu <anulithic@gmail.com>
Date: Fri, 7 Oct 2022 22:08:58 -0700
Subject: [PATCH] Use true/false

---
 src/events/RESS/review/firstPeriod.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/events/RESS/review/firstPeriod.js b/src/events/RESS/review/firstPeriod.js
index 9205e70b96c..f91c1d12e00 100644
--- a/src/events/RESS/review/firstPeriod.js
+++ b/src/events/RESS/review/firstPeriod.js
@@ -95,11 +95,11 @@ App.Events.RESSFirstPeriod = class RESSFirstPeriod extends App.Events.BaseEvent
 		function demonstrate() {
 			const frag = new DocumentFragment();
 			let r = [];
-			let restoreChastity = 0;
+			let restoreChastity = false;
 			if (slave.chastityVagina === 1) {
 				r.push(`You unlock ${his} chastity belt and set it aside, ${his} ${canSee(slave) ? `eyes widening as ${he} watches` : `body stiffening as ${he} feels`} your movements.`);
 				slave.chastityVagina = 0;
-				restoreChastity = 1;
+				restoreChastity = true;
 			}
 			r.push(`You tell ${him} that ${he} is just becoming a woman, and to celebrate, you are going to put a child in ${him}.`);
 			if (!canTalk(slave)) {
-- 
GitLab