From 1e217fcfa91f7840bd60a51ab8082f33618b65dd Mon Sep 17 00:00:00 2001 From: Yunfan Bai <bcy603@gmail.com> Date: Mon, 21 Aug 2023 19:43:05 -0700 Subject: [PATCH] Fixing fuckdolls in arcade Fixes a bug in weekly update that the fuckdoll suits get stripped. --- src/endWeek/reports/arcadeReport.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/endWeek/reports/arcadeReport.js b/src/endWeek/reports/arcadeReport.js index ac525bb6afb..7d274a7dcc4 100644 --- a/src/endWeek/reports/arcadeReport.js +++ b/src/endWeek/reports/arcadeReport.js @@ -49,7 +49,9 @@ App.EndWeek.arcadeReport = function() { /* for the included passages */ /* Perform facility based rule changes */ - slave.clothes = "no clothing"; + if (slave.clothes !== "a Fuckdoll suit") { + slave.clothes = "no clothing"; + } /* Health */ if (V.arcadeUpgradeHealth === 2 && slave.health.condition < 40) { improveCondition(slave, 2); -- GitLab