Merge pull request #180 from SilverGoLt/patch-2

Bug Fix: Someone forgot do :)
This commit is contained in:
Mycroft
2022-03-29 15:08:56 +01:00
committed by GitHub
+1 -1
View File
@@ -53,7 +53,7 @@ end)
function GetPrice(weaponName, zone)
local weapon = nil
for k,v in pairs(Config.Zones[zone].items)
for k,v in pairs(Config.Zones[zone].items) do
if v.name == weaponName then
weapon = v
break