jimathy / jim-mining

FiveM QBCore Script for Mining
158 stars 108 forks source link

Typo in server.lua causes: bad argument #1 to 'for iterator' #66

Closed tlsharkie closed 4 months ago

tlsharkie commented 4 months ago

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 ...