Fix SpawnOBject arguments

This commit is contained in:
Jérémie N'gadi
2017-08-19 18:02:52 +02:00
parent b2a93ea5de
commit 79a3c83b6a
@@ -271,7 +271,7 @@ ESX.Game.Teleport = function(entity, coords, cb)
end
ESX.Game.SpawnObject = function(model, coords, radius, cb)
ESX.Game.SpawnObject = function(model, coords, cb)
local model = (type(model) == 'number' and model or GetHashKey(model))
@@ -293,7 +293,7 @@ ESX.Game.SpawnObject = function(model, coords, radius, cb)
end
ESX.Game.SpawnLocalObject = function(model, coords, radius, cb)
ESX.Game.SpawnLocalObject = function(model, coords, cb)
local model = (type(model) == 'number' and model or GetHashKey(model))