Merge pull request #6595 from IThundxr/mc1.18/less-glue-ticking

Remove unnecessary glue ticking
This commit is contained in:
simibubi 2024-07-15 16:53:50 +02:00 committed by GitHub
commit 4b0c852e16
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -36,6 +36,7 @@ import net.minecraft.world.entity.Entity;
import net.minecraft.world.entity.EntityDimensions;
import net.minecraft.world.entity.EntityType;
import net.minecraft.world.entity.LightningBolt;
import net.minecraft.world.entity.Marker;
import net.minecraft.world.entity.MoverType;
import net.minecraft.world.entity.Pose;
import net.minecraft.world.entity.player.Player;
@ -161,7 +162,13 @@ public class SuperGlueEntity extends Entity implements IEntityAdditionalSpawnDat
@Override
public void tick() {
super.tick();
xRotO = getXRot();
yRotO = getYRot();
walkDistO = walkDist;
xo = getX();
yo = getY();
zo = getZ();
if (getBoundingBox().getXsize() == 0)
discard();
}