moved register_message into core, yay

This commit is contained in:
David Anderson
2006-05-11 08:35:21 +00:00
parent ed6e28c1d4
commit 441ab14d3b
5 changed files with 673 additions and 0 deletions

View File

@ -47,6 +47,7 @@
#include "optimizer.h"
#include "binlog.h"
#include "libraries.h"
#include "messages.h"
CList<CModule, const char*> g_modules;
CList<CScript, AMX*> g_loadedscripts;
@ -540,6 +541,7 @@ int set_amxnatives(AMX* amx, char error[128])
amx_Register(amx, g_NewMenuNatives, -1);
amx_Register(amx, g_NativeNatives, -1);
amx_Register(amx, g_DebugNatives, -1);
amx_Register(amx, msg_Natives, -1);
//we're not actually gonna check these here anymore
amx->flags |= AMX_FLAG_PRENIT;