Remove old debug log

This commit is contained in:
nea
2023-07-31 01:33:29 +02:00
parent e6e3f4a496
commit bdf943b1f1
3 changed files with 0 additions and 7 deletions

View File

@@ -42,11 +42,6 @@ public class MixinClientPacketHandler {
));
}
@Inject(method = "onEntityPosition", at = @At(value = "TAIL"))
public void onEntityPosition(EntityPositionS2CPacket packet, CallbackInfo ci) {
System.out.printf("Got position update for %d", packet.getId());
}
@Inject(method = "sendPacket(Lnet/minecraft/network/packet/Packet;)V", at = @At("HEAD"), cancellable = true)
public void onSendPacket(Packet<?> packet, CallbackInfo ci) {
if (OutgoingPacketEvent.Companion.publish(new OutgoingPacketEvent(packet)).getCancelled()) {