Skip to content

Commit

Permalink
Get lines at end of tick
Browse files Browse the repository at this point in the history
  • Loading branch information
Wyvest authored Jul 20, 2024
1 parent c9f6495 commit f9a98fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/cc/polyfrost/oneconfig/hud/TextHud.java
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,9 @@ public boolean shouldDrawBackground() {
private class TickHandler {
@Subscribe
private void onTick(TickEvent event) {
if (event.stage != Stage.START || !isEnabled()) return;
if (event.stage != Stage.END || !isEnabled()) return;
lines.clear();
getLines(lines, HudCore.editing);
}
}
}
}

0 comments on commit f9a98fe

Please sign in to comment.