Add pople counter comment to help

This commit is contained in:
Joscha 2017-10-22 13:57:17 +00:00
parent 3dd136fc7d
commit c600990c3f

View file

@ -13,20 +13,20 @@ class InfoBot(yaboli.Bot):
super().__init__("()") super().__init__("()")
self.add_help("count", ( self.add_help("count", (
"This bot counts the number of clients connected to a room.\n" "This bot counts the number of clients connected to a room. If you"
"If you open a room in two different tabs, the bot counts you " " open a room in two different tabs, the bot counts you twice.\n"
"twice.\n"
"The euphoria client, on the other hand, usually displays all" "The euphoria client, on the other hand, usually displays all"
"connections of an account as one nick in the nick list.\n" " connections of an account as one nick in the nick list. Because of"
"Because of that, this bot's count is always as high as, or higher " " that, this bot's count is always as high as, or higher than, the"
"than, the number of nicks on the nick list.\n\n" " number of nicks on the nick list, similar to the number on the"
" button to toggle the nick list.\n\n"
"If the bot's count is off, try a !recount." "If the bot's count is off, try a !recount."
)) ))
self.add_help("lurkers", ( self.add_help("lurkers", (
"People or bots who are connected to the room but haven't chosen a" "People or bots who are connected to the room but haven't chosen a"
"nick are lurkers.\n" " nick are lurkers. The euphoria client doesn't display them in the"
"The euphoria client doesn't display them in the nick list.\n" " nick list.\n"
"This bot differentiates between people (L) and bots (N) who are" "This bot differentiates between people (L) and bots (N) who are"
" lurking." " lurking."
)) ))