mirror of
https://github.com/Uberi/Minetest-WorldEdit.git
synced 2024-12-04 13:23:43 +01:00
Make //clearobjects remove unknown objects (#244)
This commit is contained in:
parent
575bfca67a
commit
f75700ed76
@ -644,7 +644,7 @@ function worldedit.clear_objects(pos1, pos2)
|
||||
return false
|
||||
end
|
||||
local entity = obj:get_luaentity()
|
||||
return not entity or not entity.name:find("^worldedit:")
|
||||
return not (entity and entity.name:find("^worldedit:"))
|
||||
end
|
||||
|
||||
-- Offset positions to include full nodes (positions are in the center of nodes)
|
||||
@ -691,4 +691,3 @@ function worldedit.clear_objects(pos1, pos2)
|
||||
end
|
||||
return count
|
||||
end
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user