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):