Skip to content

Commit

Permalink
Update EmoteStep.java
Browse files Browse the repository at this point in the history
  • Loading branch information
PsycloneTM authored Feb 3, 2025
1 parent fcc01e1 commit f12c72e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/main/java/com/questhelper/steps/EmoteStep.java
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,8 @@ public void nextEmote()
}
}

public void resetEmotes() {
public void resetEmotes()
{
currentEmoteIndex = 0;
hasScrolled = false;
}
Expand All @@ -145,7 +146,8 @@ public void makeWidgetOverlayHint(Graphics2D graphics, QuestHelperPlugin plugin)
super.makeWidgetOverlayHint(graphics, plugin);

QuestEmote currentEmote = getCurrentEmote();
if (currentEmote == null) {
if (currentEmote == null)
{
return;
}

Expand Down

0 comments on commit f12c72e

Please sign in to comment.