mirror of
https://github.com/citizenfx/cfx-server-data.git
synced 2025-01-10 15:43:00 +08:00
5 lines
146 B
Lua
5 lines
146 B
Lua
-- prevent stopping gameInit on the server
|
|
AddEventHandler('onResourceStop', function(name)
|
|
if name == 'gameInit' then CancelEvent() end
|
|
end)
|