1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-07-03 07:27:11 +02:00

Stop using hard-coded values for plug-in commands in the host plug-in.

This commit is contained in:
Sandu Liviu Catalin
2016-07-17 03:56:52 +03:00
parent 78f5ef7811
commit 9434deb804
2 changed files with 5 additions and 4 deletions

View File

@ -91,7 +91,7 @@ static uint8_t OnServerInitialise(void)
try
{
// Signal outside plug-ins to do fetch our proxies
_Func->SendPluginCommand(0xDABBAD00, "%d", SQMOD_API_VER);
_Func->SendPluginCommand(SQMOD_INITIALIZE_CMD, "%d", SQMOD_API_VER);
// Attempt to load the module core
if (Core::Get().Execute())
{