diff --git a/core/sm_srvcmds.cpp b/core/sm_srvcmds.cpp index d86a0a8c..fb8ce436 100644 --- a/core/sm_srvcmds.cpp +++ b/core/sm_srvcmds.cpp @@ -223,7 +223,7 @@ void RootConsoleMenu::OnRootConsoleCommand(const char *cmd, unsigned int argcoun ConsolePrint(" Development would not have been possible without the following people:"); ConsolePrint(" David \"BAILOPAN\" Anderson, lead developer"); ConsolePrint(" Borja \"faluco\" Ferrer, Core developer"); - ConsolePrint(" Scott \"Damaged Soul\" Ehlert, SourceMM developer"); + ConsolePrint(" Scott \"Damaged Soul\" Ehlert, Core developer"); ConsolePrint(" Pavol \"PM OnoTo\" Marko, SourceHook developer"); ConsolePrint(" Special thanks to Viper of GameConnect"); ConsolePrint(" Special thanks to Mani of Mani-Admin-Plugin"); diff --git a/core/smn_usermsgs.cpp b/core/smn_usermsgs.cpp index 750a2235..9bb9305d 100644 --- a/core/smn_usermsgs.cpp +++ b/core/smn_usermsgs.cpp @@ -432,7 +432,7 @@ static cell_t smn_HookUserMessage(IPluginContext *pCtx, const cell_t *params) return 1; } -static cell_t smn_UnHookUserMessage(IPluginContext *pCtx, const cell_t *params) +static cell_t smn_UnhookUserMessage(IPluginContext *pCtx, const cell_t *params) { IPluginFunction *pFunc; MsgListenerWrapper *pListener; @@ -477,6 +477,6 @@ REGISTER_NATIVES(usrmsgnatives) {"StartMessageEx", smn_StartMessageEx}, {"EndMessage", smn_EndMessage}, {"HookUserMessage", smn_HookUserMessage}, - {"UnHookUserMessage", smn_UnHookUserMessage}, + {"UnhookUserMessage", smn_UnhookUserMessage}, {NULL, NULL} }; diff --git a/plugins/include/usermessages.inc b/plugins/include/usermessages.inc index 41909fda..6acca67f 100644 --- a/plugins/include/usermessages.inc +++ b/plugins/include/usermessages.inc @@ -130,7 +130,7 @@ native HookUserMessage(UserMsg:msg_id, MsgHook:hook, bool:intercept=false, MsgSe * @noreturn * @error Invalid message index. */ -native UnHookUserMessage(UserMsg:msg_id, MsgHook:hook, bool:intercept=false); +native UnhookUserMessage(UserMsg:msg_id, MsgHook:hook, bool:intercept=false); /** * Starts a usermessage (network message) that broadcasts to all clients.