diff --git a/src/main/java/com/questhelper/QuestHelperPlugin.java b/src/main/java/com/questhelper/QuestHelperPlugin.java index ff19fc6697..c7b11279e0 100644 --- a/src/main/java/com/questhelper/QuestHelperPlugin.java +++ b/src/main/java/com/questhelper/QuestHelperPlugin.java @@ -231,7 +231,9 @@ protected void shutDown() GlobalFakeObjects.setInitialized(false); } - @Subscribe + // Run our base game tick checks later than other Quest Helper checks + // This allows steps/requirements/conditions to run their checks first before we try to update the side panel + @Subscribe(priority=-1.0f) public void onGameTick(GameTick event) { questBankManager.loadInitialStateFromConfig(client);