From fd3d053e34ccd6ba21a6a3075ac69118ecc41fc7 Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Sun, 7 Nov 2021 15:24:24 +0800 Subject: Fix diana event waypoints --- features/soopyGui/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'features/soopyGui') diff --git a/features/soopyGui/index.js b/features/soopyGui/index.js index 2a70b8f..aa4f691 100644 --- a/features/soopyGui/index.js +++ b/features/soopyGui/index.js @@ -61,13 +61,14 @@ class SoopyGui extends Feature { this.backButton.addEvent(backButtonEvent) this.mainWindowElement.addChild(this.categoryPage) - this.mainWindowElement.addChild(this.backButton) this.sidebarPage = new SoopyBoxElement().setLocation(0.3, 0.2, 0.3, 0.6) // this.sidebarPage.visable = false this.gui.element.addChild(this.sidebarPage) this.gui.element.addChild(this.mainWindowElement) + + this.mainWindowElement.addChild(this.backButton) this.updateButtons() } -- cgit