summaryrefslogtreecommitdiff
path: root/src/unreal31.c
diff options
context:
space:
mode:
authordane dane@31f1291d-b8d6-0310-a050-a5561fc1590b <dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2004-09-07 17:29:07 +0000
committerdane dane@31f1291d-b8d6-0310-a050-a5561fc1590b <dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2004-09-07 17:29:07 +0000
commitb0c19c6702c281fd3604356c2533329777b2702c (patch)
treeb20c40a9b164e257ff12a4817fc583a9432268ea /src/unreal31.c
parenteb0d83719b0e43b198d18af2885a378f90822c83 (diff)
BUILD : 1.7.5 (340) BUGS : none NOTES : Applied patch 830 provided by Trystan to resolve several issues.
git-svn-id: svn://svn.anope.org/anope/trunk@340 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@216 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/unreal31.c')
-rw-r--r--src/unreal31.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/unreal31.c b/src/unreal31.c
index dc745f210..0ead65d5a 100644
--- a/src/unreal31.c
+++ b/src/unreal31.c
@@ -63,7 +63,7 @@ IRCDVar ircd[] = {
1, /* TS Topic Forward */
0, /* TS Topci Backward */
0, /* Protected Umode */
- 1, /* Has Admin */
+ 0, /* Has Admin */
0, /* Chan SQlines */
0, /* Quit on Kill */
0, /* SVSMODE unban */
@@ -89,7 +89,8 @@ IRCDVar ircd[] = {
CMODE_f,
CMODE_L,
0,
-
+ 1, /* No Knock requires +i */
+ NULL, /* CAPAB Chan Modes */
},
{NULL}
};
@@ -124,8 +125,8 @@ IRCDCAPAB ircdcap[] = {
CAPAB_VL, /* VL */
CAPAB_TLKEXT, /* TLKEXT */
0, /* DODKEY */
- 0 /* DOZIP */
- }
+ 0, /* DOZIP */
+ 0}
};
unsigned long umodes[128] = {
@@ -512,7 +513,7 @@ void anope_cmd_svskill(char *source, char *user, const char *fmt, ...)
vsnprintf(buf, sizeof(buf), fmt, args);
va_end(args);
- send_cmd(source, "KILL %s :%s", user, buf);
+ send_cmd(source, "SVSKILL %s :%s", user, buf);
}
void anope_cmd_svsmode(User * u, int ac, char **av)