mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 00:37:15 +01:00
Update the server initialize traceback.
Place the closing traceback before the success or failure message.
This commit is contained in:
parent
3c37417acc
commit
4f3c4dac48
@ -94,16 +94,17 @@ static uint8_t OnServerInitialise(void)
|
||||
if (Core::Get().Execute())
|
||||
{
|
||||
Core::Get().EmitServerStartup();
|
||||
SQMOD_SV_EV_TRACEBACK("[TRACE>] OnServerInitialise")
|
||||
// Add a notification to let the user know the plug-in was loaded
|
||||
OutputMessage("The Squirrel plug-in was loaded successfully");
|
||||
}
|
||||
else
|
||||
{
|
||||
SQMOD_SV_EV_TRACEBACK("[TRACE>] OnServerInitialise")
|
||||
OutputError("Unable to load the plug-in resources properly");
|
||||
// Failed to initialize
|
||||
return SQMOD_FAILURE;
|
||||
}
|
||||
SQMOD_SV_EV_TRACEBACK("[TRACE>] OnServerInitialise")
|
||||
}
|
||||
SQMOD_CATCH_EVENT_EXCEPTION(OnServerInitialise)
|
||||
// See if a reload was requested
|
||||
|
Loading…
Reference in New Issue
Block a user