Uncomment is_vip check

This commit is contained in:
Terry Hearst 2025-01-19 11:40:24 -05:00
parent 19a390d60d
commit e807428fac

5
bot.py
View file

@ -152,9 +152,8 @@ class Bot(commands.Bot):
else:
if ctx.author.is_mod:
response += ""
# Uncomment these once twitchio gets a new release
#elif ctx.author.is_vip:
# response += "💎"
elif ctx.author.is_vip:
response += "💎"
if ctx.author.is_subscriber:
response += "🤑"
await ctx.send(response.strip())