From 333cb3adc5de9d163685491f08265a4f0e4a3c93 Mon Sep 17 00:00:00 2001 From: Parker Date: Fri, 2 Aug 2024 21:43:51 -0500 Subject: [PATCH] Fix dumbass mistake lol --- code/cogs/lyrics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/cogs/lyrics.py b/code/cogs/lyrics.py index 711084f..b3a918f 100644 --- a/code/cogs/lyrics.py +++ b/code/cogs/lyrics.py @@ -18,7 +18,7 @@ class Lyrics(commands.Cog): player = self.bot.lavalink.player_manager.get(interaction.guild.id) # If the Genius API client is not setup, send an error message - if self.bot.genius is not None: + if not self.bot.genius: embed = discord.Embed( title="Lyrics Feature Error", description="The lyrics feature is currently disabled due to errors with the Genius API.",