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

fix none

parent e641aebd
No related branches found
No related tags found
1 merge request!6152Start functions in app.data
......@@ -376,9 +376,8 @@ App.UI.Wardrobe.buttplug = function(slave) {
if (item.fs) {
clothingOption.FS = item.fs;
}
if (item.name === "none") {
// skip none in set, we set the link elsewhere.
} else if (item.name === "long plug") {
if (item.name === "long plug") {
if (slave.breedingMark !== 1 || V.propOutcome === 0 || V.eugenicsFullControl === 1 || V.arcologies[0].FSRestart === "unset") {
clothingOption.disabled = "disabled";
}
......@@ -391,7 +390,10 @@ App.UI.Wardrobe.buttplug = function(slave) {
clothingOption.disabled = "disabled";
}
}
optionsArray.push(clothingOption);
if (item.name !== "none") {
// skip none in set, we set the link elsewhere.
optionsArray.push(clothingOption);
}
});
// Sort
......
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