How do I change a property of an entity type without using tables?
Posted: Tue Nov 06, 2018 12:31 am
I'm familiar enough with using to make a table of entities that I can then change properties of, but I'm having trouble finding a way to have it simply look at a type of entity and for all of those entities it will change a given property.
For what context it's worth, the intent is to create a mod in line with the proposed .17 plans to remove ingredient number restrictions on assemblers. Fixing the vanilla assemblers is quite easy, but I'd like a way to support assemblers from all mods and not have to go in and specifically define their names into a supported table.
How might I do that?
Code: Select all
for i,name in ipairs(insert table here)
For what context it's worth, the intent is to create a mod in line with the proposed .17 plans to remove ingredient number restrictions on assemblers. Fixing the vanilla assemblers is quite easy, but I'd like a way to support assemblers from all mods and not have to go in and specifically define their names into a supported table.
How might I do that?