From 9a89ef1c5151da8f5d7197c61eb83c0c59a26a5f Mon Sep 17 00:00:00 2001 From: Chris Nutter Date: Fri, 10 May 2024 11:46:50 -0700 Subject: [PATCH] removed thread feature --- discollama.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/discollama.py b/discollama.py index a934ed4..5e82ccf 100644 --- a/discollama.py +++ b/discollama.py @@ -39,8 +39,8 @@ class Response: await self.r.edit(content=value + end) return - if self.channel.type == discord.ChannelType.text: - self.channel = await self.channel.create_thread(name='Discollama Says', message=self.message, auto_archive_duration=60) + #if self.channel.type == discord.ChannelType.text: + # self.channel = await self.channel.create_thread(name='Ollama Says', message=self.message, auto_archive_duration=60) self.r = await self.channel.send(value)