Typo in server.lua causes: bad argument #1 to 'for iterator'
Closed this issue · 0 comments
tlsharkie commented
Line 108 contains undefined value "Crafting"
for _, v in pairs(Crafting) do ...
Correction, so that this value uses the defined values in config.lua:
for _, v in pairs(Config.Crafting) do ...