mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-12-23 08:29:34 +01:00
Do some calculating
This commit is contained in:
parent
99b5dff849
commit
6ab0e0fa86
1 changed files with 2 additions and 2 deletions
|
@ -203,7 +203,7 @@ minetest.register_globalstep(function(dtime)
|
|||
local depth_strider = mcl_enchanting.get_enchantment(boots, "depth_strider")
|
||||
|
||||
if depth_strider > 0 then
|
||||
playerphysics.add_physics_factor(player, "speed", "mcl_playerplus:surface", depth_strider / 2)
|
||||
playerphysics.add_physics_factor(player, "speed", "mcl_playerplus:surface", (depth_strider / 3) + 0.75)
|
||||
end
|
||||
else
|
||||
playerphysics.remove_physics_factor(player, "speed", "mcl_playerplus:surface")
|
||||
|
|
Loading…
Reference in a new issue