From f71ab91a7089c614cec49b318968b734dea49651 Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Sat, 6 Nov 2021 20:21:26 +0800 Subject: Not loading museum gui to avoid crash with outdated guimanager --- features/betterGuis/index.js | 4 ++-- 1 file 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 @@ /// 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) -- cgit