From bc5c2513f6054a28479230521dd7d5d2350d5877 Mon Sep 17 00:00:00 2001 From: jack1142 <6032823+jack1142@users.noreply.github.com> Date: Sat, 23 Nov 2019 00:59:38 +0100 Subject: [PATCH] [Audio] Improve help string for `[p]audioset emptydisconnect` (#3051) * enhance(audio): improve help string for [p]audioset emptydisconnect * chore(changelog): add towncrier entry --- changelog.d/audio/3051.enhance.rst | 1 + redbot/cogs/audio/audio.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 changelog.d/audio/3051.enhance.rst diff --git a/changelog.d/audio/3051.enhance.rst b/changelog.d/audio/3051.enhance.rst new file mode 100644 index 000000000..9d41828f1 --- /dev/null +++ b/changelog.d/audio/3051.enhance.rst @@ -0,0 +1 @@ +Improved explanation in help string for ``[p]audioset emptydisconnect``. \ No newline at end of file diff --git a/redbot/cogs/audio/audio.py b/redbot/cogs/audio/audio.py index 0f148c3ae..07cbeb91a 100644 --- a/redbot/cogs/audio/audio.py +++ b/redbot/cogs/audio/audio.py @@ -1000,7 +1000,7 @@ class Audio(commands.Cog): @audioset.command() @checks.mod_or_permissions(administrator=True) async def emptydisconnect(self, ctx: commands.Context, seconds: int): - """Auto-disconnection after x seconds while stopped. 0 to disable.""" + """Auto-disconnect from channel when bot is alone in it for x seconds. 0 to disable.""" if seconds < 0: return await self._embed_msg(ctx, _("Can't be less than zero.")) if 10 > seconds > 0: