Skip to content
Snippets Groups Projects
Commit 04717146 authored by Patrick Beasley's avatar Patrick Beasley
Browse files

Change default step height to match vanilla default. Fixes players being...

Change default step height to match vanilla default. Fixes players being unable to walk from path to slab / stair.
parent 87ee5e61
No related branches found
No related tags found
1 merge request!1[1.16.1] Change default step height to match vanilla default.
......@@ -16,7 +16,7 @@ public class StepEntityEvents
if (entity instanceof PlayerEntity)
{
float enchantmentLevel = EnchantmentHelper.getMaxEnchantmentLevel(StepRegistry.STEPPING, entity);
float defaultStepHeight = 0.5F;
float defaultStepHeight = 0.6F;
if (enchantmentLevel > 0 && entity.stepHeight < enchantmentLevel)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment