diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt index e88861ec84434c7b1269eef485bc90c91b395547..4d790621d4aa8b45b9e77e7add936f6a25cfa3af 100644 --- a/devNotes/twine JS.txt +++ b/devNotes/twine JS.txt @@ -14839,7 +14839,6 @@ window.rulesAssistantOptions = (function() { this.appendChild(new ButtplugsVirginsList()); this.appendChild(new ButtplugsOtherList()); this.appendChild(new ImplantVolumeList()); - this.appendChild(new AutosurgerySwitch()); } } @@ -14950,6 +14949,7 @@ window.rulesAssistantOptions = (function() { class AutosurgerySection extends Section { constructor() { super("Autosurgery Settings", true); + this.appendChild(new AutosurgerySwitch()); this.appendChild(new VisionSurgeryList()); this.appendChild(new LactationSurgeryList()); if (V.seeDicks || V.makeDicks) { diff --git a/src/js/rulesAssistantOptions.tw b/src/js/rulesAssistantOptions.tw index 5e112444a392553e85e90f2aeb7889ccc17957d0..d7f56dd7152f941db58820874a346495cb7dc09c 100644 --- a/src/js/rulesAssistantOptions.tw +++ b/src/js/rulesAssistantOptions.tw @@ -917,7 +917,6 @@ window.rulesAssistantOptions = (function() { this.appendChild(new ButtplugsVirginsList()); this.appendChild(new ButtplugsOtherList()); this.appendChild(new ImplantVolumeList()); - this.appendChild(new AutosurgerySwitch()); } } @@ -1028,6 +1027,7 @@ window.rulesAssistantOptions = (function() { class AutosurgerySection extends Section { constructor() { super("Autosurgery Settings", true); + this.appendChild(new AutosurgerySwitch()); this.appendChild(new VisionSurgeryList()); this.appendChild(new LactationSurgeryList()); if (V.seeDicks || V.makeDicks) {