Revert "1.21 changes"

This reverts commit ca86597498.
This commit is contained in:
Oth3r 2024-07-22 10:34:21 -05:00
commit a7b70323e4
2 changed files with 2 additions and 2 deletions

View file

@ -248,7 +248,7 @@ public class Events {
BlockState blockState = player.getWorld().getBlockState(pos);
// check if said block is still there
if (blockState.isAir()) {
player.teleport(player.getX(),player.getBlockY()+1,player.getZ(),false);
player.teleport(player.getX(),player.getBlockY()+1,player.getZ());
entity.setRemoved(Entity.RemovalReason.DISCARDED);
entityLoop.remove();
}