Fix remaining cases of calling readFrom/writeTo NBT

This commit is contained in:
Nicholas Ignoffo 2016-09-07 17:53:09 -07:00
parent 9b51b28dbb
commit 4190031710
6 changed files with 0 additions and 18 deletions

View file

@ -90,8 +90,6 @@ public class TileDemonCrystallizer extends TileTicking implements IDemonWillCond
@Override
public void deserialize(NBTTagCompound tag)
{
super.readFromNBT(tag);
holder.readFromNBT(tag, "Will");
internalCounter = tag.getDouble("internalCounter");
}
@ -99,8 +97,6 @@ public class TileDemonCrystallizer extends TileTicking implements IDemonWillCond
@Override
public NBTTagCompound serialize(NBTTagCompound tag)
{
super.writeToNBT(tag);
holder.writeToNBT(tag, "Will");
tag.setDouble("internalCounter", internalCounter);
return tag;