Fix step height being reset to incorrect value (#652)
This commit is contained in:
parent
842df80a97
commit
0f4e1ad4cb
|
@ -7,6 +7,7 @@ Version 2.0.0-20
|
||||||
- Fixed issue where Orb Tier was never set for a player internally
|
- 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
|
- 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.
|
- 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] 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.
|
- [API] Helper method in NetworkHelper to obtain the highest possible capacity for a given tier.
|
||||||
|
|
||||||
|
|
|
@ -239,9 +239,7 @@ public class EventHandler
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!hasAssist)
|
if (!hasAssist)
|
||||||
{
|
player.stepHeight = 0.6f;
|
||||||
player.stepHeight = 0.5f;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
float percentIncrease = 0;
|
float percentIncrease = 0;
|
||||||
|
|
Loading…
Reference in a new issue