I see my plugin initializing BEFORE the server is fully online and accepting connections, but I need to run code after that point. I know I can hook OnServerInitialized. However if my plugin is hot loaded AFTER the server is fully online, that hook will never execute and my important initialization code will not run.
Is it possible to check somehow from my Init() block whether or not the server is already fully booted? If it is, then I must do my initialization right away because OnServerInitialized will not execute later. Otherwise I will do that when OnServerInitialized executes.
Is it possible to check somehow from my Init() block whether or not the server is already fully booted? If it is, then I must do my initialization right away because OnServerInitialized will not execute later. Otherwise I will do that when OnServerInitialized executes.