diff options
author | Parker <contact@pkrm.dev> | 2024-08-02 21:43:51 -0500 |
---|---|---|
committer | Parker <contact@pkrm.dev> | 2024-08-02 21:43:51 -0500 |
commit | 333cb3adc5de9d163685491f08265a4f0e4a3c93 (patch) | |
tree | 83fa83ef9f758d5dd4cc3f757f01461d42c14e07 /code | |
parent | 9e1729aa290501e5a3da546455fe68e8c13ce212 (diff) |
Fix dumbass mistake lol
Diffstat (limited to 'code')
-rw-r--r-- | code/cogs/lyrics.py | 2 |
1 files changed, 1 insertions, 1 deletions
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.", |