Skip to content

Commit

Permalink
WaxAura - No longer interrupts modules like AutoEat
Browse files Browse the repository at this point in the history
  • Loading branch information
0xTas committed Apr 7, 2024
1 parent 415faa4 commit f74c58d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/dev/stardust/modules/WaxAura.java
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,8 @@ private void onTick(TickEvent.Pre event) {
else getSignsToESP();

++timer;
ItemStack active = mc.player.getActiveItem();
if ((active.isFood() || Utils.isThrowable(active.getItem())) && mc.player.getItemUseTime() > 0) return;
if (timer >= tickRate.get()) {
timer = 0;
if (currentSign != null) waxSign(currentSign);
Expand Down

0 comments on commit f74c58d

Please sign in to comment.