master #2

Merged
NO11 merged 11 commits from VoxeLibre/VoxeLibre:master into master 2021-07-18 19:19:57 +02:00
1 changed files with 2 additions and 1 deletions
Showing only changes of commit 549bdeb6e9 - Show all commits

View File

@ -203,7 +203,8 @@ minetest.register_abm({
chance = 1,
action = function(pos, node, active_object_count, active_object_count_wider)
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
local entity = object:get_luaentity()
if entity and entity.name == "__builtin:item" then
object:remove()
end
end