package WayofTime.bloodmagic.tile; import WayofTime.bloodmagic.item.sigil.ItemSigilPhantomBridge; import WayofTime.bloodmagic.util.Constants; import WayofTime.bloodmagic.tile.base.TileTicking; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.nbt.NBTTagCompound; public class TilePhantomBlock extends TileTicking { private int ticksRemaining = 10; public TilePhantomBlock() { } public TilePhantomBlock(int ticksRemaining) { this.ticksRemaining = ticksRemaining; } @Override public void deserialize(NBTTagCompound tagCompound) { this.ticksRemaining = tagCompound.getInteger(Constants.NBT.TICKS_REMAINING); } @Override public NBTTagCompound serialize(NBTTagCompound tagCompound) { tagCompound.setInteger(Constants.NBT.TICKS_REMAINING, ticksRemaining); return tagCompound; } @Override public void onUpdate() { if(!world.isRemote) { EntityPlayer player = world.getClosestPlayer(getPos().getX(), getPos().getY(), getPos().getZ(), 10.0D, ItemSigilPhantomBridge.IS_PHANTOM_ACTIVE); if (player != null && !player.isSneaking()) return; ticksRemaining--; } if (ticksRemaining <= 0) { world.setBlockToAir(getPos()); world.removeTileEntity(getPos()); } } }