Modified Living Armour's Step Assist to only apply when the player is not sneaking. (#1545)

This commit is contained in:
Phil 2019-02-17 16:45:57 -05:00 committed by Nick Ignoffo
parent 2d49fab893
commit 069051bf3b

View file

@ -265,8 +265,14 @@ public class LivingArmourHandler
if (upgrade instanceof LivingArmourUpgradeStepAssist)
{
player.stepHeight = ((LivingArmourUpgradeStepAssist) upgrade).getStepAssist();
hasAssist = true;
if (!player.isSneaking())
{
player.stepHeight = ((LivingArmourUpgradeStepAssist) upgrade).getStepAssist();
hasAssist = true;
} else
{
player.stepHeight = 0.6F;
}
}
}
}