diff --git a/src/js/rulesAssistantOptions.js b/src/js/rulesAssistantOptions.js index 14d39fadb0c8273c77f520100ce1b0fbc5b31f37..1836ecf4adc0c993293ed2647e2e9a821f3f4f38 100644 --- a/src/js/rulesAssistantOptions.js +++ b/src/js/rulesAssistantOptions.js @@ -277,6 +277,16 @@ App.RA.options = (function() { } } + + class NoteElement extends Element { + /** + * @param {string} note + */ + constructor(note) { + super(App.UI.DOM.makeElement("div", note, ["note", "noteworthy","grid-all-columns"])); + } + } + class ElementWithLabel extends Element { /** * @param {string} label @@ -1724,6 +1734,7 @@ App.RA.options = (function() { class AutosurgeryTab extends Tab { constructor() { super(); + this.appendChild(new NoteElement("ONLY applies to slaves in the penthouse! ONLY applied at the end of the week!")); this.appendChild(new VoiceSurgeryList()); this.appendChild(new VisionSurgeryList()); this.appendChild(new HeelsSurgeryList()); @@ -4040,7 +4051,7 @@ App.RA.options = (function() { ["apply vasectomy", true], ["undo vasectomy", false], ]; - super("Apply or undo vasectomy for slaves with testicles", items, true); + super("Vasectomy for slaves with testicles", items, true); this.setValue(current_rule.set.surgery.vasectomy); this.onchange = (value) => current_rule.set.surgery.vasectomy = value; }