From 1814366b4f2e98e8d4278fc665f7fb1440ad1913 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Thu, 2 Mar 2023 13:34:39 -0500 Subject: [PATCH] fixed coco reset --- galaxy/galaxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/galaxy/galaxy.py b/galaxy/galaxy.py index 8b87604..c37222a 100644 --- a/galaxy/galaxy.py +++ b/galaxy/galaxy.py @@ -46,7 +46,7 @@ class Galaxy(commands.Cog): @checks.is_owner() async def coco_reset(self, ctx): """Resets Coco's target.""" - await self.config.cocotarget.set(0) + await self.config.guild(ctx.guild).cocotarget.set(0) embed=discord.Embed(color=await self.bot.get_embed_color(None), description=f"Coco has been reset.") await ctx.send(embed=embed)