From 0a8e7f56634669316d252f2e52240bed3758d31c Mon Sep 17 00:00:00 2001 From: Draper <27962761+Drapersniper@users.noreply.github.com> Date: Thu, 23 Jan 2020 22:05:50 +0000 Subject: [PATCH] stop dc interacting with repeat (#3426) --- redbot/cogs/audio/audio.py | 1 - 1 file changed, 1 deletion(-) diff --git a/redbot/cogs/audio/audio.py b/redbot/cogs/audio/audio.py index 99714daf6..5bc2d3a8b 100644 --- a/redbot/cogs/audio/audio.py +++ b/redbot/cogs/audio/audio.py @@ -705,7 +705,6 @@ class Audio(commands.Cog): msg += _("Auto-disconnection at queue end: {true_or_false}.").format( true_or_false=_("Enabled") if not disconnect else _("Disabled") ) - await self.config.guild(ctx.guild).repeat.set(not disconnect) if disconnect is not True and autoplay is True: msg += _("\nAuto-play has been disabled.") await self.config.guild(ctx.guild).auto_play.set(False)