mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-16 22:46:03 +01:00
refactor(streamingRequest): mention unreleased assets
Since 90% of FiveM developers do not release unused assets, many people are starting to complain when streaming fails.
This commit is contained in:
@@ -13,9 +13,12 @@ function lib.streamingRequest(request, hasLoaded, assetType, asset, timeout, ...
|
|||||||
|
|
||||||
request(asset, ...)
|
request(asset, ...)
|
||||||
|
|
||||||
|
-- i hate fivem developers
|
||||||
|
lib.print.verbose(("Loading %s '%s' - remember to release it when done."):format(assetType, asset))
|
||||||
|
|
||||||
return lib.waitFor(function()
|
return lib.waitFor(function()
|
||||||
if hasLoaded(asset) then return asset end
|
if hasLoaded(asset) then return asset end
|
||||||
end, ("failed to load %s '%s'"):format(assetType, asset), timeout)
|
end, ("failed to load %s '%s' - this is likely caused by unreleased assets"):format(assetType, asset), timeout)
|
||||||
end
|
end
|
||||||
|
|
||||||
return lib.streamingRequest
|
return lib.streamingRequest
|
||||||
|
|||||||
Reference in New Issue
Block a user