]> git.lizzy.rs Git - crafter_client.git/commitdiff
Adjust timer for bunnyhopping to avoid overlap
authoroilboi <47129783+oilboi@users.noreply.github.com>
Thu, 9 Apr 2020 20:09:25 +0000 (16:09 -0400)
committeroilboi <47129783+oilboi@users.noreply.github.com>
Thu, 9 Apr 2020 20:09:25 +0000 (16:09 -0400)
init.lua

index c1a4c55651e7b0e7401cdf16905a9f99d7425366..2c07ade0a94c6513371ba9c46a80c0d8ce31ceb7 100644 (file)
--- a/init.lua
+++ b/init.lua
@@ -80,18 +80,18 @@ minetest.register_globalstep(function(dtime)
                sneak = true
        end
        
+       --count down bunny hop state
        if bunny_hop_timer > 0 then
                bunny_hop_timer = bunny_hop_timer - dtime
                if bunny_hop_timer <= 0 then
                        bunny_hop_timer = 0
                end
-               print(bunny_hop_timer)
        end
        
        --check if need to tell server to bunnyhop
        if running == true and vel > 0 and bunny_hop_timer == 0 then
                send_server_movement_state("2")
-               bunny_hop_timer = 0.6
+               bunny_hop_timer = 0.3
        elseif bunny_hop_timer == 0 then
                bunny_hopping = false
                if running == true then