From 2359a85e3be137d20b7f1eb5296eee5ff8af705d Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Mon, 27 Feb 2023 19:35:11 -0500 Subject: [PATCH] changed int to bool --- galaxy/galaxy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/galaxy/galaxy.py b/galaxy/galaxy.py index 0904a16..437f5b6 100644 --- a/galaxy/galaxy.py +++ b/galaxy/galaxy.py @@ -103,7 +103,7 @@ class Galaxy(commands.Cog): await ctx.message.delete() @faq.command(name="linked_role") - async def faq_linked_role(self, ctx, ver: int = None, member: discord.Member = None): + async def faq_linked_role(self, ctx, test: bool, member: discord.Member = None): """Posts an embed containing FAQ about Linked Role. (WIP)""" color=await self.bot.get_embed_color(None) embed=discord.Embed(title="Linked Role", color=color, description="**Before reading this, please make sure your Discord client is updated! On Mobile, you can do this by going to your app store of choice and updating Discord manually. On PC/MacOS/Linux you can do this by clicking the green update button in the top right.**") @@ -117,7 +117,7 @@ class Galaxy(commands.Cog): await ctx.channel.send(embed=embed_desktop) await ctx.channel.send(embed=embed_mobile) else: - if ver(1): + if test(False): await ctx.channel.send(embed=embed) await ctx.channel.send(embed=embed_desktop) await ctx.channel.send(embed=embed_mobile)