mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Android stepheight: Only increase if 'touching ground' (#6313)
This commit is contained in:
parent
e55aeec2e2
commit
0e0643df35
1 changed files with 2 additions and 1 deletions
|
@ -285,7 +285,8 @@ void LocalPlayer::move(f32 dtime, Environment *env, f32 pos_max_d,
|
||||||
// to all players, as this currently creates unintended special movement
|
// to all players, as this currently creates unintended special movement
|
||||||
// abilities and advantages for Android players on a server.
|
// abilities and advantages for Android players on a server.
|
||||||
#ifdef __ANDROID__
|
#ifdef __ANDROID__
|
||||||
player_stepheight += (0.6f * BS);
|
if (touching_ground)
|
||||||
|
player_stepheight += (0.6f * BS);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
v3f accel_f = v3f(0,0,0);
|
v3f accel_f = v3f(0,0,0);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue