From: Piezo_ Date: Mon, 10 Dec 2018 01:59:23 +0000 (-0800) Subject: An entire commit just for one comment X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=43a734a57b0d2149e874de9c3d23331d8978b648;p=hangglider.git An entire commit just for one comment --- diff --git a/init.lua b/init.lua index 3fed91e..aa92f17 100644 --- a/init.lua +++ b/init.lua @@ -126,7 +126,7 @@ minetest.register_entity("hangglider:glider", { step_v = player:get_player_velocity().y if step_v < 0 and step_v > -3 then player:set_physics_override({speed=math.abs(step_v/2) + 0.75}) - elseif step_v <= -3 then --Cap our fall speed. + elseif step_v <= -3 then --Cap our gliding movement speed. player:set_physics_override({speed=2.25}) else player:set_physics_override({speed=1})