Update shared.lua

This commit is contained in:
Kakarot
2021-11-07 23:24:22 -06:00
committed by GitHub
parent 3235140d76
commit bd756e5720
+1 -1
View File
@@ -13,7 +13,7 @@ QBShared.RandomStr = function(length)
end
QBShared.RandomInt = function(length)
if length < 0 then then return '' end
if length < 0 then return '' end
return QBShared.RandomInt(length - 1) .. NumberCharset[math.random(1, #NumberCharset)]
end