General development process
- new cog commands - new voice cog - new requirements.txt - adjusted readme - added Dockerfile for faster deployment (still WIP) - other general things
This commit is contained in:
10
cogs/help.py
10
cogs/help.py
@@ -1,5 +1,6 @@
|
||||
"""
|
||||
Some help for the users
|
||||
Some help for the users:
|
||||
- aquabot
|
||||
|
||||
https://discordpy.readthedocs.io/en/latest/ext/commands/cogs.html
|
||||
"""
|
||||
@@ -14,19 +15,18 @@ class Help(commands.Cog):
|
||||
self.bot = bot
|
||||
|
||||
# COG BODY
|
||||
@commands.command( name="aquabot")
|
||||
@commands.command(name="aquabot")
|
||||
async def aquabot(self, ctx):
|
||||
"""
|
||||
Sends a short help for new users
|
||||
"""
|
||||
response = """
|
||||
I'm the usele... divine AquaBot!
|
||||
I'm the usele... divine AquaBot!\n
|
||||
If you need help, try using the `help` command!
|
||||
"""
|
||||
|
||||
await ctx.send(response)
|
||||
|
||||
|
||||
# COG ENDING
|
||||
def setup(bot):
|
||||
bot.add_cog(Help(bot))
|
||||
bot.add_cog(Help(bot))
|
||||
|
||||
Reference in New Issue
Block a user