Modified Living Armour's Step Assist to only apply when the player is not sneaking. (#1545)
This commit is contained in:
parent
2d49fab893
commit
069051bf3b
|
@ -265,8 +265,14 @@ public class LivingArmourHandler
|
||||||
|
|
||||||
if (upgrade instanceof LivingArmourUpgradeStepAssist)
|
if (upgrade instanceof LivingArmourUpgradeStepAssist)
|
||||||
{
|
{
|
||||||
player.stepHeight = ((LivingArmourUpgradeStepAssist) upgrade).getStepAssist();
|
if (!player.isSneaking())
|
||||||
hasAssist = true;
|
{
|
||||||
|
player.stepHeight = ((LivingArmourUpgradeStepAssist) upgrade).getStepAssist();
|
||||||
|
hasAssist = true;
|
||||||
|
} else
|
||||||
|
{
|
||||||
|
player.stepHeight = 0.6F;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue