From 8eb234d7fbc0d57bda0b44d2dc2e6d80f0ba0e9a Mon Sep 17 00:00:00 2001
From: Anu <anulithic@gmail.com>
Date: Tue, 12 Dec 2023 13:50:03 -0800
Subject: [PATCH] Also prevent player hormone blockers from being wiped

---
 src/endWeek/player/prDrugs.js | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/endWeek/player/prDrugs.js b/src/endWeek/player/prDrugs.js
index 46dd769c3e7..40b706d59a0 100644
--- a/src/endWeek/player/prDrugs.js
+++ b/src/endWeek/player/prDrugs.js
@@ -62,6 +62,8 @@ App.EndWeek.Player.drugs = function(PC = V.PC) {
 			case Drug.HORMONEENHANCE:
 				r.push(`Your drug regime prepares your body to accept hormonal effects.`);
 				break;
+			case Drug.HORMONEBLOCK:
+				break; // hormone blockers take effect solely in prLongTermEffects - this is a placeholder to prevent the unrecognized drug handler from clearing .drugs
 			case "hip wideners":
 				r.push(`The tablets aid your body with preparing for childbirth, at the cost of <span class="health dec">leaving you ill</span> from the excess hormones.`);
 				healthDamage(PC, random(3, 5));
-- 
GitLab