Merge pull request #312 from CoachYT1/patch-2

fix(whitelist): typo
This commit is contained in:
Mycroft
2022-06-10 19:10:19 +01:00
committed by GitHub
+2 -2
View File
@@ -1,11 +1,11 @@
WhiteList = {}
function loadWhiteList()
Whitelist = nil
WhiteList = nil
local List = LoadResourceFile(GetCurrentResourceName(),'players.json')
if List then
Whitelist = json.decode(List)
WhiteList = json.decode(List)
end
end