Fix step height being reset to incorrect value (#652)

This commit is contained in:
Nick 2016-03-14 19:46:59 -07:00
parent 842df80a97
commit 0f4e1ad4cb
2 changed files with 2 additions and 3 deletions

View file

@ -7,6 +7,7 @@ Version 2.0.0-20
- Fixed issue where Orb Tier was never set for a player internally
- Added debug commands. These work exactly the same as in the 1.7.10 version
- Creative Dagger now works correctly. Shift + Right Click on an Altar to fill it to capacity.
- Fix step height being set to incorrect value. Your Chisels and Bits stairs should work, now!
- [API] Fixed AddToNetworkEvent not being cancellable even though it should be
- [API] Helper method in NetworkHelper to obtain the highest possible capacity for a given tier.

View file

@ -239,9 +239,7 @@ public class EventHandler
}
if (!hasAssist)
{
player.stepHeight = 0.5f;
}
player.stepHeight = 0.6f;
}
float percentIncrease = 0;