Draft mares and stallions summon bug
Deshiba opened this issue ยท 4 comments
Expected Behavior
I expect stallions and mares to float in the air like all other animals summoned with the {NoAI:1} tag.
Actual Behavior
The stallions and mares drop from the sky, foals behave as mentioned above.
Steps to Reproduce
Summon a stallion or mare in the air without AI
/summon animania:stallion_draft ~ ~ ~ {NoAI:1}
Version of Minecraft, version of Animania, Single Player or Server
Minecraft 1.12
Animania 1.4.6
Craftstudio 1.0.0.93
Flatcoloredblocks 1.12-6.6
Screenshots encouraged
@capnkirok This:
if (this.isBeingRidden() && !this.isAIDisabled())
{
this.setNoAI(true);
}
else
{
this.setNoAI(false);
}
In onLivingUpdate. Dunno why it's there so I remvoed it.
There's a reason for this.... has to do with the custom AI being fired while you are riding an Animania horse. But I should have handled this in the AI and not here.