1
0
Fork 0
mirror of https://github.com/pissnet/angiosperm.git synced 2025-05-04 02:25:03 +01:00

msg: remove last vestiges of the fakelag system. charybdis has never supported fakelag.

This commit is contained in:
William Pitcock 2016-02-19 16:42:40 -06:00
parent e742a9e9e7
commit 7baa37a9ef
99 changed files with 139 additions and 157 deletions
modules

View file

@ -54,12 +54,12 @@ static int ms_unkline(struct MsgBuf *, struct Client *, struct Client *, int, co
static int me_unkline(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
struct Message kline_msgtab = {
"KLINE", 0, 0, 0, MFLG_SLOW,
"KLINE", 0, 0, 0, 0,
{mg_unreg, mg_not_oper, {ms_kline, 5}, {ms_kline, 5}, {me_kline, 5}, {mo_kline, 3}}
};
struct Message unkline_msgtab = {
"UNKLINE", 0, 0, 0, MFLG_SLOW,
"UNKLINE", 0, 0, 0, 0,
{mg_unreg, mg_not_oper, {ms_unkline, 4}, {ms_unkline, 4}, {me_unkline, 3}, {mo_unkline, 2}}
};