@Override protected void readEntityFromNBT(NBTTagCompound nbt) { super.readEntityFromNBT(nbt); this.explosiveID = nbt.getInteger("explosiveID"); nbt.setTag("data", this.nbtData); }
@Override protected void writeEntityToNBT(NBTTagCompound nbt) { super.writeEntityToNBT(nbt); nbt.setInteger("explosiveID", this.explosiveID); this.nbtData = nbt.getCompoundTag("data"); }