Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

//clearobjects should remove unknown objects #244

Merged
merged 2 commits into from
Mar 29, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions worldedit/manipulations.lua
Original file line number Diff line number Diff line change
Expand Up @@ -640,11 +640,8 @@ function worldedit.clear_objects(pos1, pos2)

local function should_delete(obj)
-- Avoid players and WorldEdit entities
sfan5 marked this conversation as resolved.
Show resolved Hide resolved
if obj:is_player() then
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)
Expand Down Expand Up @@ -691,4 +688,3 @@ function worldedit.clear_objects(pos1, pos2)
end
return count
end

Loading