Skip to content

Commit

Permalink
SignHistorian - No longer renders ghost signs when in queue.
Browse files Browse the repository at this point in the history
  • Loading branch information
0xTas committed Aug 20, 2024
1 parent 9bc3840 commit 1479f89
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/dev/stardust/modules/SignHistorian.java
Original file line number Diff line number Diff line change
Expand Up @@ -800,6 +800,7 @@ else if (hasNearbySigns()) {
@EventHandler
private void onRender3D(Render3DEvent event) {
if (mc.world == null || mc.player == null) return;
if (mc.getNetworkHandler().getPlayerList().size() <= 1) return; // ignore queue

ESPBlockData mESP = modifiedSettings.get();
ESPBlockData dESP = destroyedSettings.get();
Expand Down

0 comments on commit 1479f89

Please sign in to comment.