diff options
Diffstat (limited to 'features/globalSettings')
-rw-r--r-- | features/globalSettings/firstLoadPage.js | 2 | ||||
-rw-r--r-- | features/globalSettings/index.js | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/features/globalSettings/firstLoadPage.js b/features/globalSettings/firstLoadPage.js index 429c867..d38f927 100644 --- a/features/globalSettings/firstLoadPage.js +++ b/features/globalSettings/firstLoadPage.js @@ -17,6 +17,7 @@ class FirstLoadPage extends SoopyGuiElement { backButton.addEvent(new SoopyMouseClickEvent().setHandler(()=>{ this.guiPage.prevPage() + this.guiPage.closeSidebarPage() })) this.addChild(backButton) @@ -26,6 +27,7 @@ class FirstLoadPage extends SoopyGuiElement { nextButton.addEvent(new SoopyMouseClickEvent().setHandler(()=>{ this.guiPage.nextPage() + this.guiPage.closeSidebarPage() })) this.addChild(nextButton) diff --git a/features/globalSettings/index.js b/features/globalSettings/index.js index 14f51bd..604f887 100644 --- a/features/globalSettings/index.js +++ b/features/globalSettings/index.js @@ -40,9 +40,8 @@ class Hud extends Feature { this.reportErrorsSetting = new ToggleSetting("Send module errors to soopy server", "This will allow me to more effectivly fix them", false, "privacy_send_errors", this) - this.sendChatSetting = new ToggleSetting("Send (hashed) chat messages to soopy server", "This will allow the hide spam feature to detect messages that are spam", false, "privacy_send_chat", this) - - this.privacySettings = [this.reportErrorsSetting, this.sendChatSetting] + + this.privacySettings = [this.reportErrorsSetting] this.firstLoadPageData = JSON.parse(FileLib.read("soopyAddonsData", "soopyv2firstloaddata.json") || "{}") || {} |