increase y offset

This commit is contained in:
chmodsayshello 2022-10-22 16:24:41 +00:00
parent f37b7fe202
commit 5d4c866b75
1 changed files with 1 additions and 1 deletions

View File

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