Skip to content
Snippets Groups Projects
Commit f341e652 authored by vas's avatar vas
Browse files

assorted RAO bugs

parent 105286aa
No related branches found
No related tags found
No related merge requests found
...@@ -507,7 +507,7 @@ window.rulesAssistantOptions = (function() { ...@@ -507,7 +507,7 @@ window.rulesAssistantOptions = (function() {
this.appendChild(new AssignmentInclusion()); this.appendChild(new AssignmentInclusion());
this.appendChild(new FacilityInclusion()); this.appendChild(new FacilityInclusion());
this.appendChild(new SpecialExclusion()); this.appendChild(new SpecialExclusion());
this.appendChild(new SpecificInclusionExclusion()); //this.appendChild(new SpecificInclusionExclusion());
} }
} }
...@@ -985,7 +985,7 @@ window.rulesAssistantOptions = (function() { ...@@ -985,7 +985,7 @@ window.rulesAssistantOptions = (function() {
this.appendChild(harsh); this.appendChild(harsh);
this.setValue(current_rule.set.clothes); this.setValue(current_rule.set.clothes);
this.onchange = (data) => current_rule.set.clothes = value; this.onchange = (value) => current_rule.set.clothes = value;
} }
} }
...@@ -1071,7 +1071,7 @@ window.rulesAssistantOptions = (function() { ...@@ -1071,7 +1071,7 @@ window.rulesAssistantOptions = (function() {
else if (acc.rs === "buyBigDildos" && V.toysBoughtDildos === 1) else if (acc.rs === "buyBigDildos" && V.toysBoughtDildos === 1)
accs.push([acc.name + " (Purchased)", acc.value]); accs.push([acc.name + " (Purchased)", acc.value]);
}); });
super("Vaginal accessories for virgins"); super("Vaginal accessories for virgins", accs);
this.setValue(current_rule.set.virginAccessory); this.setValue(current_rule.set.virginAccessory);
this.onchange = (value) => current_rule.set.virginAccessory = value; this.onchange = (value) => current_rule.set.virginAccessory = value;
} }
...@@ -1086,7 +1086,7 @@ window.rulesAssistantOptions = (function() { ...@@ -1086,7 +1086,7 @@ window.rulesAssistantOptions = (function() {
else if (acc.rs === "buyBigDildos" && V.toysBoughtDildos === 1) else if (acc.rs === "buyBigDildos" && V.toysBoughtDildos === 1)
accs.push([acc.name + " (Purchased)", acc.value]); accs.push([acc.name + " (Purchased)", acc.value]);
}); });
super("Vaginal accessories for anal virgins"); super("Vaginal accessories for anal virgins", accs);
this.setValue(current_rule.set.aVirginAccessory); this.setValue(current_rule.set.aVirginAccessory);
this.onchange = (value) => current_rule.set.aVirginAccessory = value; this.onchange = (value) => current_rule.set.aVirginAccessory = value;
} }
...@@ -1101,7 +1101,7 @@ window.rulesAssistantOptions = (function() { ...@@ -1101,7 +1101,7 @@ window.rulesAssistantOptions = (function() {
else if (acc.rs === "buyBigDildos" && V.toysBoughtDildos === 1) else if (acc.rs === "buyBigDildos" && V.toysBoughtDildos === 1)
accs.push([acc.name + " (Purchased)", acc.value]); accs.push([acc.name + " (Purchased)", acc.value]);
}); });
super("Vaginal accessories for other slaves"); super("Vaginal accessories for other slaves", accs);
this.setValue(current_rule.set.vaginalAccessory); this.setValue(current_rule.set.vaginalAccessory);
this.onchange = (value) => current_rule.set.vaginalAccessory = value; this.onchange = (value) => current_rule.set.vaginalAccessory = value;
} }
...@@ -1132,7 +1132,7 @@ window.rulesAssistantOptions = (function() { ...@@ -1132,7 +1132,7 @@ window.rulesAssistantOptions = (function() {
else if (acc.rs === "buyBigPlugs" && V.toysBoughtButtPlugs === 1) else if (acc.rs === "buyBigPlugs" && V.toysBoughtButtPlugs === 1)
accs.push([acc.name + " (Purchased)", acc.value]); accs.push([acc.name + " (Purchased)", acc.value]);
}); });
super("Buttplugs for anal virgins"); super("Buttplugs for anal virgins", accs);
this.setValue(current_rule.set.aVirginButtplug); this.setValue(current_rule.set.aVirginButtplug);
this.onchange = (value) => current_rule.set.aVirginButtplug = value; this.onchange = (value) => current_rule.set.aVirginButtplug = value;
} }
...@@ -1147,7 +1147,7 @@ window.rulesAssistantOptions = (function() { ...@@ -1147,7 +1147,7 @@ window.rulesAssistantOptions = (function() {
else if (acc.rs === "buyBigPlugs" && V.toysBoughtButtPlugs === 1) else if (acc.rs === "buyBigPlugs" && V.toysBoughtButtPlugs === 1)
accs.push([acc.name + " (Purchased)", acc.value]); accs.push([acc.name + " (Purchased)", acc.value]);
}); });
super("Buttplugs for other slaves"); super("Buttplugs for other slaves", accs);
this.setValue(current_rule.set.buttplug); this.setValue(current_rule.set.buttplug);
this.onchange = (value) => current_rule.set.buttplug = value; this.onchange = (value) => current_rule.set.buttplug = value;
} }
...@@ -1551,6 +1551,12 @@ window.rulesAssistantOptions = (function() { ...@@ -1551,6 +1551,12 @@ window.rulesAssistantOptions = (function() {
value2string(cum, milk) { value2string(cum, milk) {
return `cum: ${cum}, milk: ${milk}`; return `cum: ${cum}, milk: ${milk}`;
} }
setValue(what) {
what = this.value2string(what.cum, what.milk)
super.setValue(what)
}
} }
class MuscleList extends List { class MuscleList extends List {
...@@ -1782,7 +1788,7 @@ window.rulesAssistantOptions = (function() { ...@@ -1782,7 +1788,7 @@ window.rulesAssistantOptions = (function() {
render(color) { render(color) {
const elem = document.createElement("div"); const elem = document.createElement("div");
elem.innerHTML = "Eye coloring"; elem.innerHTML = "Eye coloring: ";
this.label = document.createElement("strong"); this.label = document.createElement("strong");
this.label.innerText = color; this.label.innerText = color;
elem.appendChild(this.label); elem.appendChild(this.label);
......
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