I'm not sure why this crash occurred, but I have a theory: Muluna's "Tree" item is identical to Space Age's "Tree seed," except it grows in one tick and can not be placed by an agricultural tower. I wonder if Helmod failed to start because it failed to find an automated avenue to produce this plant from. Very interesting bug.
Helmod was assuming that any item that has a place_result
of type tree
would also have a plant_result
defined. Trying to index plant_result caused a crash as it was nil.
In the recently released Factorio v2.0.42, the devs were kind enough to add "plant-result" as a new type of ItemPrototypeFilter. The big could have been fixed without this but it does make it a lot cleaner!