forked from VoxeLibre/VoxeLibre
Fix protection-related crash when taking liquid
This commit is contained in:
parent
f985aab191
commit
0f134426e8
|
@ -205,7 +205,7 @@ minetest.register_craftitem("mcl_buckets:bucket_empty", {
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Can't steal liquids
|
-- Can't steal liquids
|
||||||
if minetest.is_protected(pointed_thing.above, pointed_thing.under) then
|
if minetest.is_protected(pointed_thing.above, user:get_player_name()) then
|
||||||
minetest.record_protection_violation(pointed_thing.under, user:get_player_name())
|
minetest.record_protection_violation(pointed_thing.under, user:get_player_name())
|
||||||
return itemstack
|
return itemstack
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue