diff options
author | Noah <mounderfod@gmail.com> | 2022-06-09 19:04:20 +0100 |
---|---|---|
committer | Noah <mounderfod@gmail.com> | 2022-06-09 19:04:20 +0100 |
commit | a52d31de4fa6b3dbdf9927afc3e87b36c64be0b9 (patch) | |
tree | a2f0d907dc3ca93f80d61272729cbdbdc489fa89 /cogs/utils.py | |
parent | 360def71e50fe7c0d879a9c2405aa9fec7291306 (diff) | |
download | tiny-potato-bot-a52d31de4fa6b3dbdf9927afc3e87b36c64be0b9.tar.gz |
The potato is reborn!
Diffstat (limited to 'cogs/utils.py')
-rw-r--r-- | cogs/utils.py | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/cogs/utils.py b/cogs/utils.py index 4657ad2..a574249 100644 --- a/cogs/utils.py +++ b/cogs/utils.py @@ -1,5 +1,6 @@ -import nextcord -from nextcord.ext import commands +import discord +from discord.ext import commands + class Utils(commands.Cog): def __init__(self, bot): @@ -7,15 +8,16 @@ class Utils(commands.Cog): @commands.command(name="about", brief="Gives information about the bot.", help="Gives information about the bot.") async def about(self, ctx): - embed = nextcord.Embed(title="Tiny Potato Bot", - description="The creator of Tiny Potato Bot is mounderfod (aka redcreeper14385), find him here:", + embed = discord.Embed(title="Tiny Potato Bot", + description="The creator of Tiny Potato Bot is mounderfod (aka CraftVoltage), find him here:", color=0xa37dca) - embed.add_field(name="GitHub", value="https://github.com/redcreeper14385", inline=False) - embed.add_field(name="Twitch", value="https://twitch.tv/mounderfod", inline=False) - embed.add_field(name="Discord", value="mounderfod#4179", inline=False) - embed.add_field(name="Reddit", value="https://www.reddit.com/user/mounderfod", inline=False) - embed.set_footer(text="Tiny Potato Bot v1.0.0") + embed.add_field(name="GitHub", value="https://github.com/mounderfod", inline=False) + embed.add_field(name="Twitch", value="https://twitch.tv/mounderfod_", inline=False) + embed.add_field(name="Discord", value="mounderfod#5949", inline=False) + embed.add_field(name="Reddit", value="https://www.reddit.com/user/craftvoltage", inline=False) + embed.set_footer(text="Tiny Potato Bot v2.0.0") await ctx.send(embed=embed) + def setup(bot): - bot.add_cog(Utils(bot)) \ No newline at end of file + bot.add_cog(Utils(bot)) |