summaryrefslogtreecommitdiff
path: root/src/messages.c
diff options
context:
space:
mode:
authorgeniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2006-09-10 19:24:20 +0000
committergeniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2006-09-10 19:24:20 +0000
commit60b3c3568a275caa0ac1a386a9f03982cd3a4ffd (patch)
treea3903724541b4f108056f9c5012753c02013bcf2 /src/messages.c
parentafb6d55cc032817d25d32a1979a2a3eea4bf93d4 (diff)
BUILD : 1.7.15 (1151) BUGS : 601 NOTES : Fixed us with reposding we didnt
git-svn-id: svn://svn.anope.org/anope/trunk@1151 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@874 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/messages.c')
-rw-r--r--src/messages.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/messages.c b/src/messages.c
index 9c678e5df..22aac8265 100644
--- a/src/messages.c
+++ b/src/messages.c
@@ -329,6 +329,7 @@ int m_version(char *source, int ac, char **av)
int m_whois(char *source, char *who)
{
BotInfo *bi;
+ NickAlias *na;
const char *clientdesc;
if (source && who) {
@@ -362,6 +363,15 @@ int m_whois(char *source, char *who)
start_time);
anope_cmd_318(source, bi->nick);
return MOD_CONT;
+ } else if (!(ircd->svshold && UseSVSHOLD) && (na = findnick(who)) && (na->status & NS_KILL_HELD)) {
+ /* We have a nick enforcer client here that we need to respond to.
+ * We can't just say it doesn't exist here, even tho it does for
+ * other servers :) -GD
+ */
+ anope_cmd_311("%s %s %s %s * :Services Enforcer", source, na->nick, NSEnforcerUser, NSEnforcerHost);
+ anope_cmd_312("%s %s %s :%s", source, na->nick, ServerName, ServerDesc);
+ anope_cmd_318(source, na->nick);
+ return MOD_CONT;
} else {
anope_cmd_401(source, who);
return MOD_CONT;