Skip to content

Commit 5bbd2a9

Browse files
committed
Remove stdout
1 parent 6e1a4ae commit 5bbd2a9

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/main/java/org/samo_lego/golfiv/mixin/movement/EntityMixin_NetherRoofDamage.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package org.samo_lego.golfiv.mixin.movement;
22

33
import net.minecraft.entity.Entity;
4-
import net.minecraft.server.network.ServerPlayerEntity;
54
import net.minecraft.world.World;
65
import org.spongepowered.asm.mixin.Mixin;
76
import org.spongepowered.asm.mixin.Shadow;
@@ -24,9 +23,6 @@ public abstract class EntityMixin_NetherRoofDamage {
2423

2524
@Inject(method = "attemptTickInVoid", at = @At("RETURN"))
2625
private void golfiv_inflictRoofDamage(CallbackInfo ci) {
27-
if (self instanceof ServerPlayerEntity) {
28-
System.out.printf("%.2f, %d\n", self.getY(), self.getEntityWorld().getTopY());
29-
}
3026
if (golfConfig.main.inflictNetherRoofDamage != -1 &&
3127
self.getY() >= golfConfig.main.inflictNetherRoofDamage &&
3228
self.getEntityWorld().getRegistryKey() == World.NETHER) {

0 commit comments

Comments
 (0)