vel_vector.y = 0.5

This commit is contained in:
chmodsayshello 2022-10-22 18:25:10 +00:00
parent 85449fc076
commit 82b7af6876
1 changed files with 1 additions and 1 deletions

View File

@ -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,
})