diff --git a/[esx_addons]/esx_property/server/main.lua b/[esx_addons]/esx_property/server/main.lua index fd2a124f..fc55b196 100644 --- a/[esx_addons]/esx_property/server/main.lua +++ b/[esx_addons]/esx_property/server/main.lua @@ -1162,7 +1162,7 @@ end) exports("GetPlayerProperties", function(identifier) local PlayerProperties = {} for i=1, #Properties do - if Properties[i].Owned and Properties[i].owner == identifier then + if Properties[i].Owned and Properties[i].Owner == identifier then PlayerProperties[#PlayerProperties + 1] = Properties[i] end end @@ -1188,4 +1188,4 @@ end) exports("ForceSaveProperties", function() local ExecutingResource = GetInvokingResource() PropertySave(TranslateCap("forced_save", ExecutingResource)) -end) \ No newline at end of file +end)