From c83cf9e1306dab59fcf29454aa91d3b7ec420d72 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Sat, 9 May 2020 10:48:40 -0700 Subject: [PATCH] Add founder badge --- bot.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bot.py b/bot.py index ea6f924..d099eb4 100644 --- a/bot.py +++ b/bot.py @@ -71,6 +71,7 @@ def _badges(badges: str) -> str: for s, reg in ( ('\033[48;2;224;005;185m♦\033[m', re.compile('^vip/')), ('\033[48;2;233;025;022m☞\033[m', re.compile('^broadcaster/')), + ('\033[48;2;130;005;180m★\033[m', re.compile('^founder/')), ('\033[48;2;130;005;180m★\033[m', re.compile('^subscriber/')), ('\033[48;2;000;160;214m♕\033[m', re.compile('^premium/')), ('\033[48;2;088;226;193m◘\033[m', re.compile('^sub-gifter/')),