fix(esx_weaponshop): fix typo

This commit is contained in:
Mycroft
2022-04-25 18:52:21 +01:00
parent f14c6013c5
commit 0ce0070bff
+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) do
for k,v in pairs(Config.Zones[zone].Items) do
if v.name == weaponName then
weapon = v
break