Removed incomplete locales

This commit is contained in:
ElPumpo
2018-07-13 23:04:46 +02:00
parent d949c0cd0b
commit 905552ec2d
7 changed files with 10 additions and 60 deletions
-12
View File
@@ -4,18 +4,6 @@ RegisteredSocieties = {}
TriggerEvent('esx:getSharedObject', function(obj) ESX = obj end)
function stringsplit(inputstr, sep)
if sep == nil then
sep = "%s"
end
local t={} ; i=1
for str in string.gmatch(inputstr, "([^"..sep.."]+)") do
t[i] = str
i = i + 1
end
return t
end
function GetSociety(name)
for i=1, #RegisteredSocieties, 1 do
if RegisteredSocieties[i].name == name then