From 82b7af6876774859e649e3d74ffac43df77de31e Mon Sep 17 00:00:00 2001 From: chmodsayshello Date: Sat, 22 Oct 2022 18:25:10 +0000 Subject: [PATCH] vel_vector.y = 0.5 --- the_bridge.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/the_bridge.lua b/the_bridge.lua index a7de950..8041eb5 100644 --- a/the_bridge.lua +++ b/the_bridge.lua @@ -211,7 +211,7 @@ minetest.register_craftitem("the_bridge:knockback_stick",{ if not minetest.is_player(pointed_thing.ref) then return end dir = user:get_look_dir() vel_vector = vector.multiply(dir,12) - vel_vector.y = 0.2 --hardcoded so you cant launch a player up like 20 blocks + vel_vector.y = 0.5 --hardcoded so you cant launch a player up like 20 blocks pointed_thing.ref:add_player_velocity(vel_vector) end, })