diff options
author | DukePyrolator <DukePyrolator@anope.org> | 2013-08-31 08:46:56 +0200 |
---|---|---|
committer | DukePyrolator <DukePyrolator@anope.org> | 2013-08-31 08:46:56 +0200 |
commit | 752a5ca1b7d89044728a045622b3f3db5fb94f7e (patch) | |
tree | bb269ec3ad50ff4ac4f50b3fd50cf9f7feb60925 /include/users.h | |
parent | e1a1cf0e6f62c374f952103e50d302cb17462833 (diff) |
add vhost support for hybrid
Diffstat (limited to 'include/users.h')
-rw-r--r-- | include/users.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/users.h b/include/users.h index 26aeb24bb..8b8237af0 100644 --- a/include/users.h +++ b/include/users.h @@ -282,14 +282,16 @@ class CoreExport User : public virtual Base, public Extensible, public CommandRe /** Remove a mode on the user * @param bi The client setting the mode * @param um The user mode + * @param param Optional param for the mode */ - void RemoveMode(BotInfo *bi, UserMode *um); + void RemoveMode(BotInfo *bi, UserMode *um, const Anope::string ¶m = ""); /** Remove a mode from the user * @param bi The client setting the mode * @param name The mode name + * @param param Optional param for the mode */ - void RemoveMode(BotInfo *bi, const Anope::string &name); + void RemoveMode(BotInfo *bi, const Anope::string &name, const Anope::string ¶m = ""); /** Set a string of modes on a user * @param bi The client setting the modes |