From 5d4c866b75f656842a9ed36309d4d62e026d5721 Mon Sep 17 00:00:00 2001 From: chmodsayshello Date: Sat, 22 Oct 2022 16:24:41 +0000 Subject: [PATCH] increase y offset --- the_bridge.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/the_bridge.lua b/the_bridge.lua index 2df2b12..82e8204 100644 --- a/the_bridge.lua +++ b/the_bridge.lua @@ -205,7 +205,7 @@ minetest.register_craftitem("the_bridge:knockback_stick",{ if not pointed_thing then return end if not minetest.is_player(pointed_thing.ref) then return end dir = user:get_look_dir() - dir.y = dir.y+0.2 + dir.y = dir.y+1 pointed_thing.ref:add_player_velocity(vector.multiply(dir,8)) end, })