Goddamnit MCP, neither of these two methods do what the comments say they do!

This commit is contained in:
Electroblob77
2020-06-09 23:25:30 +01:00
parent 3348938d46
commit 937c791196
@@ -31,7 +31,7 @@ public abstract class ActionAnimation extends Animation {
@Override
public boolean shouldDisplay(EntityPlayer player, boolean firstPerson){
return !firstPerson && player.getItemInUseCount() > 0 && player.getActiveItemStack().getItemUseAction() == action;
return !firstPerson && player.getItemInUseMaxCount() > 0 && player.getActiveItemStack().getItemUseAction() == action;
}
/** Called from the client proxy to register all of wizardry's action animations. */