From 698fd28a330983abc76ec680eef987e2ffc1310a Mon Sep 17 00:00:00 2001 From: sgoudham Date: Fri, 15 Apr 2022 03:40:15 +0100 Subject: [PATCH] Update status to 'streaming' --- exclamation_mark_charity/runner.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/exclamation_mark_charity/runner.py b/exclamation_mark_charity/runner.py index c8d8f44..03afd26 100644 --- a/exclamation_mark_charity/runner.py +++ b/exclamation_mark_charity/runner.py @@ -1,10 +1,10 @@ -from discord import Intents -from discord.ext import commands -from discord.ext.commands import Context +from discord import Intents, Streaming +from discord.ext.commands import Context, Bot from exclamation_mark_charity import BOT_PREFIX, BOT_TOKEN -bot = commands.Bot(command_prefix=BOT_PREFIX, intents=Intents.all()) +bot = Bot(command_prefix=BOT_PREFIX, intents=Intents.all()) +bot.activity = Streaming(name="!charity", url="https://www.twitch.tv/exclamation_mark_charity") @bot.command()