modified help text

This commit is contained in:
lickthecheese 2020-02-01 11:08:27 -05:00
parent 3f0163426f
commit e0d2921018
3 changed files with 3 additions and 2 deletions

3
bot.py
View File

@ -47,7 +47,8 @@ class Circles(teambot.Handler):
self._bot.conn.privmsg(target,message)
if __name__=="__main__":
chans = ['#chaos', '#lickthecheese', '#cminecraft', '#bots', '#mbgeneral']
#chans = ['#chaos', '#lickthecheese', '#cminecraft', '#bots', '#mbgeneral']
chans = ['#chaos'] # only go in chaos while under development
bot = teambot.TeamBot(chans, "circles", "localhost", chandler=Circles)
bot.start()

View File

@ -92,6 +92,6 @@ def circle(self, c,n,m):
def init(self):
self.registerCommand('circle', circle)
self.registerCommand('c', circle)
self.registerHelp('circle', 'circle <output type letter> <input><type letter>')
self.registerHelp('circle', 'circle <output type letter> <input><type letter> - calculate mesurements of a circle. the valid types are r: radius, d: diameter, a: area, and c: circumference')