Skeleton, Stray, Zombie, and other mobs when holding an item, it appears on the off-hand.
DanielMC101 opened this issue · 3 comments
From EntityMorph.java in setEntity():
if (entity instanceof EntityLiving)
{
((EntityLiving) entity).setLeftHanded(true);
}
This always sets the mob to be Left-Handed. No idea why it is the way it is.