diff options
author | Adam <Adam@anope.org> | 2011-02-25 21:40:43 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-02-25 21:40:43 -0500 |
commit | ee387569821b45581063f6bc349cccc643f9a293 (patch) | |
tree | 9f8a83e5e9a36304d06c75f2bdf351729ca9bb65 /include/bots.h | |
parent | eea7d2eb7715f875096641bae18250122078bd00 (diff) |
Fixed a lot of small problems
Diffstat (limited to 'include/bots.h')
-rw-r--r-- | include/bots.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/bots.h b/include/bots.h index 7cdf417f1..2ae6fdbc0 100644 --- a/include/bots.h +++ b/include/bots.h @@ -77,15 +77,15 @@ class CoreExport BotInfo : public User, public Flags<BotFlag, BI_END> /** Join this bot to a channel * @param c The channel - * @param update_ts Assume we're updating the TS for this channel + * @param status The status the bot should have on the channel */ - void Join(Channel *c, bool update_ts = false); + void Join(Channel *c, ChannelStatus *status = NULL); /** Join this bot to a channel * @param chname The channel name - * @param update_ts Assume we're updating the TS for this channel + * @param status The status the bot should have on the channel */ - void Join(const Anope::string &chname, bool update_ts = false); + void Join(const Anope::string &chname, ChannelStatus *status = NULL); /** Part this bot from a channel * @param c The channel |