diff --git a/galaxy/galaxy.py b/galaxy/galaxy.py index 577f983..593ca50 100644 --- a/galaxy/galaxy.py +++ b/galaxy/galaxy.py @@ -295,7 +295,7 @@ class Galaxy(commands.Cog): @faq.command(name="dps") async def faq_dps(self, ctx, member: discord.Member = None): """DPS Calculations/Inaccuracy""" - embed=discord.Embed(title="DPS Calculations", color=await self.bot.get_embed_color(None), description="The ``/info`` command (and by extention ``/shipinfo`` from Odin) misreports DPS, due to it calculating DPS disregarding the turret's type (kinetic, laser), causing it to assume the target ship is both hulled and has shield simultaneously. It also ignores turret overrides, custom reloads, and custom damage values. If you'd like to check ship stats accurately, you can either use the ``/ship`` command in this channel or you can use the [Galaxy Info Website](https://galaxy.wingysam.xyz/ships). Alternatively, to check turret stats, you can use the [Galaxy Info Turrets Page](https://galaxy.wingysam.xyz/turrets).") + embed=discord.Embed(title="DPS Calculations", color=await self.bot.get_embed_color(None), description="The ``/info`` command (and by extention ``/shipinfo`` from Odin) misreports DPS, due to it calculating DPS disregarding the turret's type (kinetic, laser), causing it to assume the target ship is both hulled and has shield simultaneously. It also ignores turret overrides, custom reloads, and custom damage values. If you'd like to check ship stats accurately, you can either use the ``/ship`` command in this channel or you can use the [Galaxy Info Website](https://info.galaxy.casa/ships). Alternatively, to check turret stats, you can use the [Galaxy Info Turrets Page](https://info.galaxy.casa/turrets).") if member: await ctx.channel.send(embed=embed, content=member.mention) else: @@ -401,4 +401,4 @@ class Galaxy(commands.Cog): async def faq_handler(self, ctx, error): """Error Handler for Galaxy.""" if isinstance(error, discord.NotFound): - return \ No newline at end of file + return diff --git a/suggestions/suggestions.py b/suggestions/suggestions.py index 7801a52..2be7b0a 100644 --- a/suggestions/suggestions.py +++ b/suggestions/suggestions.py @@ -78,9 +78,9 @@ class Suggestions(commands.Cog): "Uh oh, looks like the Admins haven't added the required channel." ) embed = discord.Embed(color=await ctx.embed_colour(), description=suggestion) - footer = [f"Suggested by {ctx.author.name}#{ctx.author.discriminator}", + footer = [f"Suggested by {ctx.author.name}#{ctx.author.discriminator} ({ctx.author.id})", ctx.author.avatar_url] - author = [f"{ctx.author.name}#{ctx.author.discriminator} ({ctx.author.id})", ctx.author.avatar_url] + author = [f"{ctx.author.name}#{ctx.author.discriminator}", ctx.author.avatar_url] embed.set_footer( text=footer[0], icon_url=footer[1] @@ -503,4 +503,4 @@ class Suggestions(commands.Cog): await self.config.custom("SUGGESTION", server, suggestion_id).denied.set( True ) - await ctx.tick() \ No newline at end of file + await ctx.tick()