fix comment because it is referring to code that has been changed

This commit is contained in:
Ethan 2024-07-06 12:25:22 +08:00
parent e1cb3c42d2
commit e5c78030dc

View file

@ -100,7 +100,7 @@ public class JavaBlockUpdateTranslator extends PacketTranslator<ClientboundBlock
|| lastInteractPos.getZ() != packet.getEntry().getPosition().getZ())) {
return;
}
BlockState state = BlockState.of(packet.getEntry().getBlock()); // This will be yeeted soon. Thanks Chris.
BlockState state = BlockState.of(packet.getEntry().getBlock());
session.setInteracting(false);
BlockSoundInteractionTranslator.handleBlockInteraction(session, lastInteractPos.toFloat(), state);
}