From d158a1cf629cee05ddbc8bd9a1bff1b511eb0a0d Mon Sep 17 00:00:00 2001
From: Terry Hearst <thearst3rd@gmail.com>
Date: Sat, 17 Sep 2022 00:12:29 -0400
Subject: [PATCH] Comment out is_vip since it's not in a twitchio release yet
 LUL

---
 bot.py | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/bot.py b/bot.py
index 426c162..193aa26 100644
--- a/bot.py
+++ b/bot.py
@@ -51,8 +51,9 @@ class Bot(commands.Bot):
 		else:
 			if ctx.author.is_mod:
 				response += "⚔"
-			elif ctx.author.is_vip:
-				reponse += "💎"
+			# Uncomment these once twitchio gets a new release
+			#elif ctx.author.is_vip:
+			#	response += "💎"
 			if ctx.author.is_subscriber:
 				response += "🤑"
 		await ctx.send(response.strip())