This commit is contained in:
2025-06-16 20:00:01 +09:00
parent e0e1913328
commit 280d9dbf1f
2 changed files with 7 additions and 9 deletions

View File

@@ -109,16 +109,14 @@ local function entity_build(event)
return
end
if settings.startup['PHI-CT'].value then
if event.entity.type == 'infinity-container' and event.entity.name == 'trash-chest' then
event.entity.remove_unfiltered_items = true
if event.entity.type == 'infinity-container' and event.entity.name == 'trash-chest' then
event.entity.remove_unfiltered_items = true
elseif event.entity.type == 'infinity-pipe' and event.entity.name == 'trash-pipe' then
event.entity.set_infinity_pipe_filter(nil)
end
return
elseif event.entity.type == 'infinity-pipe' and event.entity.name == 'trash-pipe' then
event.entity.set_infinity_pipe_filter(nil)
end
return
end
local function entity_destroy(event)