-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WaxAura - Now properly renders signs despite player movement when sta…
…nding-still mode is active. (cherry picked from commit bb9347a)
- Loading branch information
Showing
2 changed files
with
2 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,6 @@ | |
import meteordevelopment.meteorclient.systems.modules.Modules; | ||
import meteordevelopment.meteorclient.systems.modules.Category; | ||
|
||
|
||
/** | ||
* @author Tas [0xTas] <[email protected]> | ||
**/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,7 +37,6 @@ | |
import meteordevelopment.meteorclient.utils.render.color.SettingColor; | ||
import meteordevelopment.meteorclient.systems.modules.render.blockesp.ESPBlockData; | ||
|
||
|
||
/** | ||
* @author Tas [0xTas] <[email protected]> | ||
**/ | ||
|
@@ -273,13 +272,12 @@ public void onDeactivate() { | |
private void onTick(TickEvent.Pre event) { | ||
if (mc.player == null || mc.interactionManager == null) return; | ||
|
||
getSignsToESP(); | ||
if (standingStill.get()) { | ||
Vec3d vel = mc.player.getVelocity(); | ||
if (vel.length() >= 0.08d) return; | ||
} | ||
|
||
if (timer % 2 == 0) getSignsToWax(); | ||
else getSignsToESP(); | ||
|
||
++timer; | ||
ItemStack active = mc.player.getActiveItem(); | ||
|
@@ -395,7 +393,7 @@ private void onRender(Render3DEvent event) { | |
esp.tracerColor | ||
); | ||
} catch (Exception err) { | ||
err.printStackTrace(); | ||
Stardust.LOG.error(err.toString()); | ||
} | ||
} | ||
} | ||
|