diff --git a/src/js/itemAvailability.js b/src/js/itemAvailability.js index 436f5c092359b12f84136e3b0ca1468687f827f8..5925073fd8acaee58678349dc90d36f9c0996b8c 100644 --- a/src/js/itemAvailability.js +++ b/src/js/itemAvailability.js @@ -307,21 +307,13 @@ globalThis.isItemAccessible = (function() { } case "choose own chastity": { if (slave.choosesOwnChastity !== 1 && slave.devotion > 20 && slave.trust > 0) { - if (slave.choosesOwnClothes === 1) { - return "Slave is not choosing own clothing"; - } else { - return true; - } + return true; } return false; } case "revoke choosing own chastity": { if (slave.choosesOwnChastity > 0 && slave.devotion > 20 && slave.trust > 0) { - if (slave.choosesOwnClothes === 1) { - return "Slave is not choosing own clothing"; - } else { - return true; - } + return true; } return false; }