i don't even know how this one happened

This commit is contained in:
Bob 2022-08-21 18:42:37 +02:00
parent b79059b32e
commit 6196edc1b6

View File

@ -70,6 +70,12 @@ public abstract class EntityMovingConveyorObject extends Entity {
}
if(!worldObj.isRemote) {
ticksExisted++;
if(this.ticksExisted <= 5) {
return;
}
int blockX = (int) Math.floor(posX);
int blockY = (int) Math.floor(posY);