diff --git a/cogs/err.py b/cogs/err.py index 73d7bb6..84390e5 100644 --- a/cogs/err.py +++ b/cogs/err.py @@ -102,6 +102,9 @@ class Err: else: err_module = "Unknown" + # Set initial value unconditionally + err_description = self.no_err_desc + # Searching for error codes related to the Switch # (doesn't include special cases) if errcode in switch_known_errcodes: @@ -112,8 +115,6 @@ class Err: for errcode_range in switch_known_errcode_ranges[module]: if desc >= errcode_range[0] and desc <= errcode_range[1]: err_description = errcode_range[2] - else: - err_description = self.no_err_desc # Make a nice Embed out of it embed = discord.Embed(title=f"{str_errcode} / {hex(errcode)}", diff --git a/cogs/meme.py b/cogs/meme.py index 0ccc6e8..8f27aa9 100644 --- a/cogs/meme.py +++ b/cogs/meme.py @@ -49,6 +49,14 @@ class Meme: """secret command""" await ctx.send(f"🍂 you found me 🍂") + @commands.check(check_if_staff_or_ot) + @commands.command(hidden=True, aliases=["outstanding"]) + async def outstandingmove(self, ctx): + """Posts the outstanding move meme""" + await ctx.send("https://cdn.discordapp.com/attachments" + "/371047036348268545/528413677007929344" + "/image0-5.jpg") + @commands.check(check_if_staff_or_ot) @commands.command(hidden=True) async def bones(self, ctx):