Skip to content
Snippets Groups Projects
Commit 37f55082 authored by lowercasedonkey's avatar lowercasedonkey
Browse files

fix every

parent 2c10cd4b
No related branches found
No related tags found
No related merge requests found
...@@ -7,9 +7,14 @@ App.UI.WardrobeShopping = function() { ...@@ -7,9 +7,14 @@ App.UI.WardrobeShopping = function() {
let r = []; let r = [];
r.push(`The room containing all the clothes and accessories you have available to dress your slaves in, as well as the supplies and tools your tailor needs to resize them to better fit your slaves. Several mirrors are set up for a slave to try on outfits should they be allowed to dress themselves. The selection includes`); r.push(`The room containing all the clothes and accessories you have available to dress your slaves in, as well as the supplies and tools your tailor needs to resize them to better fit your slaves. Several mirrors are set up for a slave to try on outfits should they be allowed to dress themselves. The selection includes`);
const ownItAll = ( let ownItAll = true;
App.Data.clothes.every((i) => isItemAccessible.entry(i.value, "clothing")) for (const [key, value] of App.Data.clothes) {
); if(isItemAccessible.entry(key, "clothing")) {
ownItAll = false;
break;
}
}
if (ownItAll) { if (ownItAll) {
r.push(`outfits from all manner of cultures and societies; not a single style eludes you.`); r.push(`outfits from all manner of cultures and societies; not a single style eludes you.`);
} else { } else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment