Request for Selection Tool Entity Filter
Posted: Tue Jul 18, 2017 10:01 pm
Deconstruction planner allows me to filter entities through whitelist and blacklist in the game. It would be nice to allow filtering for the selection-tool in the API where I can specify the entity types and names to prevent the cursor box from selecting them.
An example code might look something like the following:
An example code might look something like the following:
Code: Select all
data:extend(
{
{
...
type = "selection-tool",
blacklist = {"iron-plate", "tree"},
whitelist = {"resource"}
...
}
)