From b8829f4aaf24f5524d90496a1411a0309affba26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Schauwers?= Date: Tue, 2 Mar 2021 20:41:52 +0100 Subject: [PATCH] Removed check that prevented sub guides from opening --- src/world/actor/player/interface-state.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/world/actor/player/interface-state.ts b/src/world/actor/player/interface-state.ts index b69a55d96..fe233bf8e 100644 --- a/src/world/actor/player/interface-state.ts +++ b/src/world/actor/player/interface-state.ts @@ -145,9 +145,9 @@ export class InterfaceState { } public openWidget(widgetId: number, options: WidgetOptions): void { - if(this.widgetOpen(options.slot, widgetId)) { - return; - } + // if(this.widgetOpen(options.slot, widgetId)) { + // return; + // } const widget = new Widget(widgetId, options);