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

strip debug and explicitly address her choice

parent 3a28945b
No related branches found
No related tags found
1 merge request!6135Use setup for wardrobe
...@@ -214,12 +214,10 @@ window.isClothingAccessible = function(string) { ...@@ -214,12 +214,10 @@ window.isClothingAccessible = function(string) {
return false; /* couldn't be found */ return false; /* couldn't be found */
} }
if (!(item.hasOwnProperty("unlock")) && !(item.hasOwnProperty("fs"))) { if (!(item.hasOwnProperty("unlock")) && !(item.hasOwnProperty("fs"))) {
console.log(`${string} is free for everyone!`);
return true; return true;
} }
if (item.hasOwnProperty("fs")) { if (item.hasOwnProperty("fs")) {
if (V.arcologies[0][item.fs] > 0) { if (V.arcologies[0][item.fs] > 0) {
console.log(`${string} is in FS!`);
return true; return true;
} }
} }
...@@ -227,10 +225,8 @@ window.isClothingAccessible = function(string) { ...@@ -227,10 +225,8 @@ window.isClothingAccessible = function(string) {
let keys = Object.keys(item.unlock); let keys = Object.keys(item.unlock);
for (let key in keys) { for (let key in keys) {
if (keys[key] === "continent" && V.continent === item.unlock[keys[key]]) { if (keys[key] === "continent" && V.continent === item.unlock[keys[key]]) {
console.log(`${string} is in continent!`);
return true; return true;
} else if (V[keys[key]] > 0 ) { } else if (V[keys[key]] > 0 ) {
console.log(`${string} because ${keys[key]} is true for us!`);
return true; return true;
} }
} }
...@@ -241,8 +237,6 @@ window.isClothingAccessible = function(string) { ...@@ -241,8 +237,6 @@ window.isClothingAccessible = function(string) {
} }
} }
} }
console.log("this sucks, we couldn't get: ");
console.log(item);
return false; return false;
}; };
......
...@@ -95,7 +95,7 @@ App.UI.Wardrobe.clothes = function(slave) { ...@@ -95,7 +95,7 @@ App.UI.Wardrobe.clothes = function(slave) {
break; break;
} }
} }
if (isClothingAccessible(array[i].updateSlave.clothes)) { if (array[i].updateSlave.clothes === `choosing her own clothes` || isClothingAccessible(array[i].updateSlave.clothes)) {
// is it just text? // is it just text?
if (array[i].disabled) { if (array[i].disabled) {
link = App.UI.DOM.disabledLink(array[i].text, [array[i].disabled]); link = App.UI.DOM.disabledLink(array[i].text, [array[i].disabled]);
......
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