diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-06-29 21:46:16 +1000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-06-29 21:46:16 +1000 |
commit | ebac3516aada8378ca10b78acf0f942440934e6c (patch) | |
tree | 0f646b1945ab259ff42dd625ab03f4b1f14c6b89 /src/Java/gtPlusPlus/core/entity/monster | |
parent | cccd154da5181349169a06219254b31489925f22 (diff) | |
download | GT5-Unofficial-ebac3516aada8378ca10b78acf0f942440934e6c.tar.gz GT5-Unofficial-ebac3516aada8378ca10b78acf0f942440934e6c.tar.bz2 GT5-Unofficial-ebac3516aada8378ca10b78acf0f942440934e6c.zip |
+ More Villager work.
+ Added framework for custom spawners.
Diffstat (limited to 'src/Java/gtPlusPlus/core/entity/monster')
-rw-r--r-- | src/Java/gtPlusPlus/core/entity/monster/EntityGiantChickenBase.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/core/entity/monster/EntityGiantChickenBase.java b/src/Java/gtPlusPlus/core/entity/monster/EntityGiantChickenBase.java index 35b9321ece..3a094e129b 100644 --- a/src/Java/gtPlusPlus/core/entity/monster/EntityGiantChickenBase.java +++ b/src/Java/gtPlusPlus/core/entity/monster/EntityGiantChickenBase.java @@ -35,10 +35,10 @@ public class EntityGiantChickenBase extends EntityChicken { this.tasks.addTask(2, new EntityAIMate(this, 1.0D)); this.tasks.addTask(3, new EntityAITempt(this, 1.0D, ModItems.itemGemShards, false)); this.tasks.addTask(4, new EntityAIFollowParent(this, 1.1D)); + this.tasks.addTask(4, new EntityAIEatGrass(this)); this.tasks.addTask(5, new EntityAIWander(this, 1.0D)); + this.tasks.addTask(5, new EntityAILookIdle(this)); this.tasks.addTask(6, new EntityAIWatchClosest(this, EntityPlayer.class, 6.0F)); - this.tasks.addTask(7, new EntityAILookIdle(this)); - this.tasks.addTask(8, new EntityAIEatGrass(this)); } |