Merge pull request #2318 from diesieben07/entity-egg

Allow forge-type spawn-eggs to spawn child entities when clicking EntityAgeable
This commit is contained in:
LexManos 2015-12-28 07:12:39 -08:00
commit 7298b21cb5
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
--- ../src-base/minecraft/net/minecraft/entity/EntityAgeable.java
+++ ../src-work/minecraft/net/minecraft/entity/EntityAgeable.java
@@ -31,7 +31,7 @@
{
if (!this.field_70170_p.field_72995_K)
{
- Class <? extends Entity > oclass = EntityList.func_90035_a(itemstack.func_77960_j());
+ Class <? extends Entity > oclass = EntityList.field_75625_b.get(net.minecraft.item.ItemMonsterPlacer.getEntityName(itemstack));
if (oclass != null && this.getClass() == oclass)
{