From 6afce505f80c1b0e0fb1168c84d872d6a29fa1b4 Mon Sep 17 00:00:00 2001 From: kopareigns <kopareigns@gmail.com> Date: Thu, 2 Aug 2018 22:45:01 -0400 Subject: [PATCH] Move AutosurgerySwitch to the Autosurgery section --- devNotes/twine JS.txt | 2 +- src/js/rulesAssistantOptions.tw | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt index e88861ec844..4d790621d4a 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 5e112444a39..d7f56dd7152 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) { -- GitLab