How to create an infinite chest and set him a filter?
Posted: Sun Jan 28, 2018 12:36 pm
I have a command that creates a requester chest with a filter
But if I create an infinite chest with a filter, then the filter is not applied to it
How do I add a filter to the chest?
Code: Select all
/c game.surfaces[1].create_entity{
name = "logistic-chest-requester", position = {game.player.position.x+3, game.player.position.y},
force=game.player.force, request_filters={ {index=1, name="iron-plate", count=128} }
}
Code: Select all
/c game.surfaces[1].create_entity{ name = "infinity-chest", position = {game.player.position.x+3, game.player.position.y}, force=game.player.force, request_filters={ {index=1, name="iron-plate", count=128} } }