Fix incorrect method call in summoned creature classes; was causing caster not be loaded properly

I can't believe I didn't notice this before...
This commit is contained in:
Electroblob
2018-02-26 19:02:14 +00:00
parent 6f776fbae6
commit f9b546daa9
9 changed files with 9 additions and 9 deletions
@@ -196,7 +196,7 @@ public class EntityWitherSkeletonMinion extends EntityWitherSkeleton implements
@Override
public void readEntityFromNBT(NBTTagCompound nbttagcompound){
super.readEntityFromNBT(nbttagcompound);
this.writeNBTDelegate(nbttagcompound);
this.readNBTDelegate(nbttagcompound);
}
// Recommended overrides