From: Adam Date: Tue, 12 Nov 2013 15:42:17 +0000 (-0500) Subject: These two numerics are supposed to use SentText() as they can go to remote users... X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=cada37c7b51c0f1bee8117caa0123412b2e48081;p=user%2Fhenk%2Fcode%2Finspircd.git These two numerics are supposed to use SentText() as they can go to remote users... --- diff --git a/src/modules/m_callerid.cpp b/src/modules/m_callerid.cpp index 7d8247530..33c874946 100644 --- a/src/modules/m_callerid.cpp +++ b/src/modules/m_callerid.cpp @@ -402,8 +402,8 @@ public: if (now > (dat->lastnotify + (time_t)notify_cooldown)) { user->WriteNumeric(RPL_TARGNOTIFY, "%s :has been informed that you messaged them.", dest->nick.c_str()); - dest->WriteNumeric(RPL_UMODEGMSG, "%s %s@%s :is messaging you, and you have umode +g. Use /ACCEPT +%s to allow.", - user->nick.c_str(), user->ident.c_str(), user->dhost.c_str(), user->nick.c_str()); + dest->SendText(":%s %03d %s %s %s@%s :is messaging you, and you have umode +g. Use /ACCEPT +%s to allow.", + ServerInstance->Config->ServerName.c_str(), RPL_UMODEGMSG, dest->nick.c_str(), user->nick.c_str(), user->ident.c_str(), user->dhost.c_str(), user->nick.c_str()); dat->lastnotify = now; } return MOD_RES_DENY; diff --git a/src/modules/m_globalload.cpp b/src/modules/m_globalload.cpp index cae8b09f9..eda654423 100644 --- a/src/modules/m_globalload.cpp +++ b/src/modules/m_globalload.cpp @@ -102,7 +102,7 @@ class CommandGunloadmodule : public Command } } else - user->SendText(":%s ERR_CANTUNLOADMODULE %s %s :No such module", ServerInstance->Config->ServerName.c_str(), user->nick.c_str(), parameters[0].c_str()); + user->SendText(":%s %03d %s %s :No such module", ServerInstance->Config->ServerName.c_str(), ERR_CANTUNLOADMODULE, user->nick.c_str(), parameters[0].c_str()); } else ServerInstance->SNO->WriteToSnoMask('a', "MODULE '%s' GLOBAL UNLOAD BY '%s' (not unloaded here)",parameters[0].c_str(), user->nick.c_str());