diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-04-18 00:25:15 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-04-18 00:25:15 +0800 |
commit | 082d9cf4af63495a3d8709b0ee87dc935ed986dc (patch) | |
tree | e1da1a02907573f68c8052ec5a2a77366385361c /features/globalSettings | |
parent | f718bd5743701a7fb5f96e74a4df75145cc28789 (diff) | |
download | SoopyV2-082d9cf4af63495a3d8709b0ee87dc935ed986dc.tar.gz SoopyV2-082d9cf4af63495a3d8709b0ee87dc935ed986dc.tar.bz2 SoopyV2-082d9cf4af63495a3d8709b0ee87dc935ed986dc.zip |
Many changes
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") || "{}") || {} |