diff options
-rw-r--r-- | modules/m_capab.c | 2 | ||||
-rw-r--r-- | modules/m_ison.c | 2 | ||||
-rw-r--r-- | modules/m_userhost.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/modules/m_capab.c b/modules/m_capab.c index 7714ce2..1f951e9 100644 --- a/modules/m_capab.c +++ b/modules/m_capab.c @@ -62,7 +62,7 @@ mr_capab(struct Client *client_p, struct Client *source_p, } static struct Message capab_msgtab = { - "CAPAB", 0, 0, 0, MAXPARA, MFLG_SLOW, 0, + "CAPAB", 0, 0, 2, MAXPARA, MFLG_SLOW, 0, { mr_capab, m_ignore, m_ignore, m_ignore, m_ignore, m_ignore } }; diff --git a/modules/m_ison.c b/modules/m_ison.c index bcd0c8e..884c1a2 100644 --- a/modules/m_ison.c +++ b/modules/m_ison.c @@ -107,7 +107,7 @@ m_ison(struct Client *client_p, struct Client *source_p, } static struct Message ison_msgtab = { - "ISON", 0, 0, 1, 1, MFLG_SLOW, 0, + "ISON", 0, 0, 2, 1, MFLG_SLOW, 0, {m_unregistered, m_ison, m_ignore, m_ignore, m_ison, m_ignore} }; diff --git a/modules/m_userhost.c b/modules/m_userhost.c index 81cddf6..a27cbfb 100644 --- a/modules/m_userhost.c +++ b/modules/m_userhost.c @@ -100,7 +100,7 @@ m_userhost(struct Client *client_p, struct Client *source_p, } static struct Message userhost_msgtab = { - "USERHOST", 0, 0, 1, 1, MFLG_SLOW, 0, + "USERHOST", 0, 0, 2, 1, MFLG_SLOW, 0, {m_unregistered, m_userhost, m_userhost, m_ignore, m_userhost, m_ignore} }; |