Skip to content

Commit

Permalink
fix: speed up sidepanel responsiveness (#1858)
Browse files Browse the repository at this point in the history
  • Loading branch information
pajlada authored Nov 24, 2024
1 parent 1debbca commit 9eeba0c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/com/questhelper/QuestHelperPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 9eeba0c

Please sign in to comment.