From 6a65948b742609f4a75d81ee73ca00e07d3026f9 Mon Sep 17 00:00:00 2001 From: s1lentq Date: Thu, 19 May 2016 00:30:26 +0600 Subject: [PATCH] Added natives set_movevar/get_movevar Added forwards RG_PM_Move/RG_PM_AirMove and some functions of a CSGameRules --- reapi/src/dllapi.cpp | 2 +- reapi/src/member_list.cpp | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/reapi/src/dllapi.cpp b/reapi/src/dllapi.cpp index 8dbc109..fed0410 100644 --- a/reapi/src/dllapi.cpp +++ b/reapi/src/dllapi.cpp @@ -4,7 +4,7 @@ DLL_FUNCTIONS *g_pFunctionTable; DLL_FUNCTIONS gFunctionTable = { NULL, // pfnGameInit - &DispatchSpawn, // pfnSpawn + &DispatchSpawn, // pfnSpawn NULL, // pfnThink NULL, // pfnUse NULL, // pfnTouch diff --git a/reapi/src/member_list.cpp b/reapi/src/member_list.cpp index aef7a74..4cd0c59 100644 --- a/reapi/src/member_list.cpp +++ b/reapi/src/member_list.cpp @@ -7,7 +7,6 @@ #define GM_VOICE_MEMBERS(mx) CLASS_MEMBERS_DEF(CVoiceGameMgr, mx) #define BASE_MEMBERS(mx) CLASS_MEMBERS_DEF(CBaseEntity, mx) #define ANIM_MEMBERS(mx) CLASS_MEMBERS_DEF(CBaseAnimating, mx) -#define MONST_MEMBERS(mx) CLASS_MEMBERS_DEF(CBaseMonster, mx) #define PL_MEMBERS(mx) CLASS_MEMBERS_DEF(CBasePlayer, mx) #define EVAR_MEMBERS(mx) CLASS_MEMBERS_DEF(com_entvars, mx) #define MOVEVAR_MEMBERS(mx) CLASS_MEMBERS(movevars_t, MoveVars::##mx, mx)