diff options
author | Alkalus <Draknyte1@hotmail.com> | 2020-05-04 01:32:46 +0100 |
---|---|---|
committer | Alkalus <Draknyte1@hotmail.com> | 2020-05-04 01:32:46 +0100 |
commit | 2b7ae2001ed8f49d2de8f88ef306426af60c279b (patch) | |
tree | 954737087b6adcbb4b3b8f4f7d3464d2e0212b6f /src/Java/gtPlusPlus/australia | |
parent | 3159aef00e7babcf8c5e1d574a738b6d2cac9e42 (diff) | |
download | GT5-Unofficial-2b7ae2001ed8f49d2de8f88ef306426af60c279b.tar.gz GT5-Unofficial-2b7ae2001ed8f49d2de8f88ef306426af60c279b.tar.bz2 GT5-Unofficial-2b7ae2001ed8f49d2de8f88ef306426af60c279b.zip |
$ Fixed handling of Giant Eggs.
$ Fixed obscure crash caused by Dingos.
$ Fixed handling of Spawn Eggs and entities registered to the global list.
$ Potentially fixed NEI not working correctly for GT++ recipe maps.
Diffstat (limited to 'src/Java/gtPlusPlus/australia')
-rw-r--r-- | src/Java/gtPlusPlus/australia/entity/type/EntityDingo.java | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/Java/gtPlusPlus/australia/entity/type/EntityDingo.java b/src/Java/gtPlusPlus/australia/entity/type/EntityDingo.java index 02068411fc..11b9737c4f 100644 --- a/src/Java/gtPlusPlus/australia/entity/type/EntityDingo.java +++ b/src/Java/gtPlusPlus/australia/entity/type/EntityDingo.java @@ -113,9 +113,6 @@ public class EntityDingo extends EntityWolf { protected void entityInit() { super.entityInit(); - this.dataWatcher.addObject(18, new Float(this.getHealth())); - this.dataWatcher.addObject(19, new Byte((byte) 0)); - this.dataWatcher.addObject(20, new Byte((byte) BlockColored.func_150032_b(1))); } protected void func_145780_a(int p_145780_1_, int p_145780_2_, int p_145780_3_, Block p_145780_4_) { @@ -127,8 +124,6 @@ public class EntityDingo extends EntityWolf { */ public void writeEntityToNBT(NBTTagCompound p_70014_1_) { super.writeEntityToNBT(p_70014_1_); - p_70014_1_.setBoolean("Angry", this.isAngry()); - p_70014_1_.setByte("CollarColor", (byte) this.getCollarColor()); } /** @@ -136,11 +131,6 @@ public class EntityDingo extends EntityWolf { */ public void readEntityFromNBT(NBTTagCompound p_70037_1_) { super.readEntityFromNBT(p_70037_1_); - this.setAngry(p_70037_1_.getBoolean("Angry")); - - if (p_70037_1_.hasKey("CollarColor", 99)) { - this.setCollarColor(p_70037_1_.getByte("CollarColor")); - } } /** |