diff options
-rw-r--r-- | features/betterGuis/index.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/features/betterGuis/index.js b/features/betterGuis/index.js index 9648a9a..18135a4 100644 --- a/features/betterGuis/index.js +++ b/features/betterGuis/index.js @@ -2,7 +2,7 @@ /// <reference lib="es2015" /> import Feature from "../../featureClass/class"; import ToggleSetting from "../settings/settingThings/toggle"; -import MuseumGui from "./museumGui"; +// import MuseumGui from "./museumGui"; class BetterGuis extends Feature { constructor() { @@ -12,7 +12,7 @@ class BetterGuis extends Feature { onEnable(){ this.initVariables() - this.museumGui = new MuseumGui() + // this.museumGui = new MuseumGui() this.replaceSbMenuClicks = new ToggleSetting("Improve Clicks on SBMENU", "This will change clicks to middle clicks, AND use commands where possible (eg /pets)", true, "sbmenu_clicks", this) this.reliableSbMenuClicks = {getValue: ()=>false}//removed because hypixel fixed may add back later //new ToggleSetting("Make SBMENU clicks reliable", "This will delay clicks on sbmenu to time them so they dont get canceled", true, "sbmenu_time", this) |