diff --git a/src/js/itemAvailability.js b/src/js/itemAvailability.js index 13ba1c6746e94d3d3348386f7eae1eb5b2d7561e..e867ae924e3ca4d4cae6c4306099ca262a41d525 100644 --- a/src/js/itemAvailability.js +++ b/src/js/itemAvailability.js @@ -311,21 +311,13 @@ globalThis.isItemAccessible = (function() { } case "choose own chastity": { if (slave.choosesOwnChastity !== 1 && slave.devotion > 20 && slave.trust > 0) { - if (slave.choosesOwnClothes === 0) { - 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 === 0) { - return "Slave is not choosing own clothing"; - } else { - return true; - } + return true; } return false; }