From 06fa7b0648cb219b65f6baa0518f9fd91f175a5b Mon Sep 17 00:00:00 2001 From: Juni Date: Thu, 14 Apr 2022 16:52:32 -0400 Subject: [PATCH] fix --- reactquote/reactquote.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactquote/reactquote.py b/reactquote/reactquote.py index 1419d5c..7c92287 100644 --- a/reactquote/reactquote.py +++ b/reactquote/reactquote.py @@ -112,9 +112,9 @@ class ReactQuote(commands.Cog): async def setquoteout(self, ctx: commands.Context): """Sets Channel to be output for new Quotes""" guild_group = self.config.guild(ctx.guild) - settings = await guild_group.settings() + settings = await guild_group.reactQuotesSettings() settings["outputChannel"] = ctx.channel.id - await guild_group.quotes.set(settings) + await guild_group.reactQuotesSettings.set(settings) await ctx.send("New Quotes will print here.")