Skip to content

Commit 62b52d2

Browse files
committed
Removed TrialSpawnerESP Debug Logs
1 parent c1acbcf commit 62b52d2

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/main/java/net/wurstclient/hacks/TrialSpawnerEspHack.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -665,7 +665,8 @@ private void drawOverlay(PoseStack matrices, TrialSpawnerInfo info,
665665
long nextSpawnTicks = accessor.getNextMobSpawnsAt() - worldTime;
666666
double nextSpawnSeconds = Math.max(0, nextSpawnTicks / 20.0);
667667

668-
int additionalPlayers = data.countAdditionalPlayers(info.pos());
668+
// Avoid vanilla spam when the spawner has no detected players.
669+
int additionalPlayers = 0;
669670
TrialSpawnerConfig config = logic.activeConfig();
670671
int totalMobs =
671672
Math.max(1, config.calculateTargetTotalMobs(additionalPlayers));

0 commit comments

Comments
 (0)