master #15

Merged
NO11 merged 241 commits from VoxeLibre/VoxeLibre:master into master 2022-03-12 23:42:27 +01:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 8db28c1337 - Show all commits

View File

@ -572,11 +572,11 @@ function mcl_util.replace_mob(obj, mob)
return obj
end
function mcl_util.get_pointed_thing(player)
function mcl_util.get_pointed_thing(player, liquid)
local pos = vector.offset(player:get_pos(), 0, player:get_properties().eye_height, 0)
local look_dir = vector.multiply(player:get_look_dir(), 5)
local pos2 = vector.add(pos, look_dir)
local ray = minetest.raycast(pos, pos2, false, true)
local ray = minetest.raycast(pos, pos2, false, liquid)
if ray then
for pointed_thing in ray do