small fix

This commit is contained in:
MihailRis
2025-09-13 23:38:01 +03:00
parent afd5eec6d0
commit 1c2fa2bba4
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ end
function move_vertical(speed, vel)
vel = vel or body:get_vel()
vel[2] = vel[2] * 0.2 + speed * 0.8
vel[2] = vel[2] * 0.2 + props.movement_speed * speed * 0.8
body:set_vel(vel)
end