1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 00:37:15 +01:00

Don't use log messages to confirm the plugin was loaded or not since they can be ignored.

This commit is contained in:
Sandu Liviu Catalin 2016-08-25 12:00:48 +03:00
parent 2c1f588cba
commit 28ac1e889a

View File

@ -97,11 +97,11 @@ static uint8_t OnServerInitialise(void)
{
Core::Get().EmitServerStartup();
// Add a notification to let the user know the plug-in was loaded
LogScs("The Squirrel plug-in was loaded successfully");
OutputMessage("The Squirrel plug-in was loaded successfully");
}
else
{
LogFtl("Unable to load the plug-in resources properly");
OutputError("Unable to load the plug-in resources properly");
// Failed to initialize
return SQMOD_FAILURE;
}