diff --git a/amxmodx/modules.cpp b/amxmodx/modules.cpp index f39bc310..4e231047 100755 --- a/amxmodx/modules.cpp +++ b/amxmodx/modules.cpp @@ -819,6 +819,9 @@ void *Module_ReqFnptr(const char *funcName) REGISTER_FUNC("AddNatives", MNF_AddNatives) REGISTER_FUNC("RaiseAmxError", amx_RaiseError) REGISTER_FUNC("RegisterForward", registerForward) + REGISTER_FUNC("RegisterSPForward", registerSPForward) + REGISTER_FUNC("RegisterSPForwardByName", registerSPForwardByName) + REGISTER_FUNC("UnregisterSPForward", unregisterSPForward) REGISTER_FUNC("ExecuteForward", executeForwards) REGISTER_FUNC("PrepareCellArray", prepareCellArray) REGISTER_FUNC("PrepareCharArray", prepareCharArray)