Fixed Item.shouldCauseReequipAnimation hook.

This commit is contained in:
LexManos 2016-03-21 17:56:48 -07:00
parent 2ca7cff075
commit cc5dea0df6

View file

@ -639,7 +639,7 @@ public class ForgeHooksClient
changed = slot != slotMainHand; changed = slot != slotMainHand;
slotMainHand = slot; slotMainHand = slot;
} }
return !from.getItem().shouldCauseReequipAnimation(from, to, changed); return from.getItem().shouldCauseReequipAnimation(from, to, changed);
} }
public static BlockFaceUV applyUVLock(BlockFaceUV blockFaceUV, EnumFacing originalSide, ITransformation rotation) public static BlockFaceUV applyUVLock(BlockFaceUV blockFaceUV, EnumFacing originalSide, ITransformation rotation)