From 4d81887bcf7fae8b8f1c85232b83f353f2bffebe Mon Sep 17 00:00:00 2001 From: Dav <57032623+Dav-Git@users.noreply.github.com> Date: Thu, 12 Mar 2020 21:46:19 +0000 Subject: [PATCH] [Core] Unify commands that set bot's activity status (#3646) * alias [p]set game * Implement suggestions --- redbot/core/core_commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/redbot/core/core_commands.py b/redbot/core/core_commands.py index 083f0a070..675e66fad 100644 --- a/redbot/core/core_commands.py +++ b/redbot/core/core_commands.py @@ -1073,7 +1073,7 @@ class Core(commands.Cog, CoreLogic): else: await ctx.send(_("Done.")) - @_set.command(name="game") + @_set.command(name="playing", aliases=["game"]) @checks.bot_in_a_guild() @checks.is_owner() async def _game(self, ctx: commands.Context, *, game: str = None): @@ -1158,7 +1158,7 @@ class Core(commands.Cog, CoreLogic): await ctx.bot.change_presence(status=status, activity=game) await ctx.send(_("Status changed to {}.").format(status)) - @_set.command() + @_set.command(name="streaming", aliases=["stream"]) @checks.bot_in_a_guild() @checks.is_owner() async def stream(self, ctx: commands.Context, streamer=None, *, stream_title=None):