diff --git a/src/js/rulesAssistantOptions.js b/src/js/rulesAssistantOptions.js index 05cef44ec3440524a876022eef9788934c62259f..084ea51d06e2220cd9c20c1cf637a6927c7576f7 100644 --- a/src/js/rulesAssistantOptions.js +++ b/src/js/rulesAssistantOptions.js @@ -1806,7 +1806,7 @@ globalThis.rulesAssistantOptions = (function() { ]; super("Clothes", items); - const nClothes = isItemAccessible.array(App.Data.clothes, "harsh", !true); + const nClothes = isItemAccessible.array(App.Data.clothes, "harsh", false); nClothes.sort(function(a, b) { if (a[0] < b[0]) { return -1; } if (a[0] > b[0]) { return 1; } return 0; }); this._nice = new ListSubSection(this, "Nice", nClothes);