This commit is contained in:
2026-05-08 23:44:29 +09:00
parent 6000d862d8
commit 9cf351fba3
2 changed files with 14 additions and 7 deletions
+12
View File
@@ -0,0 +1,12 @@
local main = {}
function main.build(event)
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
end
return main