Question about Lua implementation
Posted: Sun May 10, 2020 6:38 pm
Hey!
I'm working on fixing up Foreman so that it works correctly for Bobs/Angels.
Foreman: https://github.com/Rybadour/Foreman
I ran into an error coming out of various Angel's mods:
I don't see this global "mods" dictionary specified by Factorio mod API: https://lua-api.factorio.com/latest/index.html
Just curious what this is and how I should implement it. Should I fill a dictionary called "mods" with all the "enabled" mods. Is this something standard in Factorio or something specific to Bobs?
I'm working on fixing up Foreman so that it works correctly for Bobs/Angels.
Foreman: https://github.com/Rybadour/Foreman
I ran into an error coming out of various Angel's mods:
Code: Select all
C:\Users\Ryan\AppData\Local\Temp\angelsrefining_0.11.10\angelsrefining_0.11.10\data.lua (...p\angelsrefining_0.11.10\angelsrefining_0.11.10\data.lua:21: attempt to index global 'mods' (a nil value))
C:\Users\Ryan\AppData\Local\Temp\angelspetrochem_0.9.8\angelspetrochem_0.9.8\data.lua (...emp\angelspetrochem_0.9.8\angelspetrochem_0.9.8\data.lua:17: attempt to index global 'mods' (a nil value))
C:\Users\Ryan\AppData\Local\Temp\angelssmelting_0.6.6\angelssmelting_0.6.6\data.lua (...\Temp\angelssmelting_0.6.6\angelssmelting_0.6.6\data.lua:50: attempt to index global 'mods' (a nil value))
Just curious what this is and how I should implement it. Should I fill a dictionary called "mods" with all the "enabled" mods. Is this something standard in Factorio or something specific to Bobs?