Skip to content

Commit ebd281e

Browse files
committed
Remove print statements
1 parent d09abf5 commit ebd281e

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/client/java/io/github/discusser/toomanyentities/mixin/client/WorldRendererMixin.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ public class WorldRendererMixin {
1919
@Inject(method = "render", at = @At(value = "FIELD", target = "Lnet/minecraft/client/render/WorldRenderer;regularEntityCount:I", ordinal = 1, shift = At.Shift.AFTER))
2020
private void afterEntityCountIncrement(CallbackInfo info, @Local Entity entity) {
2121
String key = entity.getType().getTranslationKey();
22-
System.out.println(regularEntityCount + "\t and \t" + TooManyEntitiesClient.entityCounts.get("entity.minecraft.chicken"));
2322
TooManyEntitiesClient.entityCounts.put(key, TooManyEntitiesClient.entityCounts.getOrDefault(key, 0) + 1);
2423
}
2524
}

0 commit comments

Comments
 (0)