v1.1.0 release!

This commit is contained in:
WayofTime 2014-07-13 18:18:28 -04:00
parent 96930fc47a
commit 1778cfa737
20 changed files with 233 additions and 57 deletions

View file

@ -149,7 +149,6 @@ public class EntityIceDemon extends EntityDemon implements IRangedAttackMob
{
super.writeEntityToNBT(par1NBTTagCompound);
par1NBTTagCompound.setBoolean("Angry", this.isAngry());
par1NBTTagCompound.setByte("CollarColor", (byte) this.getCollarColor());
}
/**
@ -159,12 +158,6 @@ public class EntityIceDemon extends EntityDemon implements IRangedAttackMob
{
super.readEntityFromNBT(par1NBTTagCompound);
this.setAngry(par1NBTTagCompound.getBoolean("Angry"));
if (par1NBTTagCompound.hasKey("CollarColor"))
{
this.setCollarColor(par1NBTTagCompound.getByte("CollarColor"));
}
this.setCombatTask();
}