Fix bows not animating properly when picking up ammo while using. Closes #2672

This commit is contained in:
LexManos 2016-03-30 15:21:00 -07:00
parent c662810814
commit 9b9e48b3db
1 changed files with 1 additions and 1 deletions

View File

@ -572,7 +572,7 @@
+ */
+ public boolean shouldCauseReequipAnimation(ItemStack oldStack, ItemStack newStack, boolean slotChanged)
+ {
+ return !ItemStack.func_77989_b(oldStack, newStack);
+ return !oldStack.equals(newStack); //!ItemStack.areItemStacksEqual(oldStack, newStack);
+ }
+
+ private ResourceLocation registryName = null;