forked from VoxeLibre/VoxeLibre
Reduce the radius in which a cactus destroys items
This commit is contained in:
parent
bbffda3635
commit
a8760c0375
|
@ -197,7 +197,7 @@ minetest.register_abm({
|
||||||
interval = 1,
|
interval = 1,
|
||||||
chance = 1,
|
chance = 1,
|
||||||
action = function(pos, node, active_object_count, active_object_count_wider)
|
action = function(pos, node, active_object_count, active_object_count_wider)
|
||||||
for _,object in pairs(minetest.get_objects_inside_radius(pos, 1.2)) do
|
for _,object in pairs(minetest.get_objects_inside_radius(pos, 0.9)) do
|
||||||
if not object:is_player() and object:get_luaentity() and object:get_luaentity().name == "__builtin:item" then
|
if not object:is_player() and object:get_luaentity() and object:get_luaentity().name == "__builtin:item" then
|
||||||
object:remove()
|
object:remove()
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue