Add AquaBot title
and some other minor changes
This commit is contained in:
21
cogs/help.py
21
cogs/help.py
@@ -9,23 +9,24 @@ import discord
|
||||
from discord.ext import commands
|
||||
|
||||
# COG INIT
|
||||
class HelpCog(commands.Cog):
|
||||
class Help(commands.Cog):
|
||||
def __init__(self, bot):
|
||||
self.bot = bot
|
||||
|
||||
# COG BODY
|
||||
@commands.command(
|
||||
name="aquabot",
|
||||
description="Prints a short help for new users"
|
||||
)
|
||||
@commands.command( name="aquabot")
|
||||
async def aquabot(self, ctx):
|
||||
"""
|
||||
Sends a short help for new users
|
||||
"""
|
||||
response = """
|
||||
I'm the usele... divine AquaBot!
|
||||
If you need help, try using the `help` command!
|
||||
"""
|
||||
|
||||
await ctx.send("""
|
||||
I'm the usele... divine AquaBot!
|
||||
If you need help, try using the `help` command!
|
||||
""")
|
||||
await ctx.send(response)
|
||||
|
||||
|
||||
# COG ENDING
|
||||
def setup(bot):
|
||||
bot.add_cog(HelpCog(bot))
|
||||
bot.add_cog(Help(bot))
|
||||
Reference in New Issue
Block a user