summaryrefslogtreecommitdiff
path: root/src/messages.c
diff options
context:
space:
mode:
authorRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-09-30 18:45:09 +0000
committerRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-09-30 18:45:09 +0000
commit2fd6bf39b1b018a7081fafd8350ea88f1b733ea5 (patch)
tree0dad452b2a0d221aab16417978b4743408c975f4 /src/messages.c
parent0f2719990e6b61c9172e0a4593b7a1605bb29f44 (diff)
Remove 'skeleton' mode. It's not really all that useful.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1200 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/messages.c')
-rw-r--r--src/messages.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/messages.c b/src/messages.c
index a92dde620..3176040fc 100644
--- a/src/messages.c
+++ b/src/messages.c
@@ -20,8 +20,7 @@
int m_nickcoll(char *user)
{
- if (!skeleton && !readonly)
- introduce_user(user);
+ introduce_user(user);
return MOD_CONT;
}
@@ -47,13 +46,10 @@ int m_kill(char *nick, char *msg)
/* Recover if someone kills us. */
/* use nickIsServices() to reduce the number of lines of code - TSL */
if (nickIsServices(nick, 0)) {
- if (!readonly && !skeleton)
- introduce_user(nick);
+ introduce_user(nick);
} else if (s_BotServ && (bi = findbot(nick))) {
- if (!readonly && !skeleton) {
- introduce_user(nick);
- bot_rejoin_all(bi);
- }
+ introduce_user(nick);
+ bot_rejoin_all(bi);
} else {
do_kill(nick, msg);
}