diff --git a/changelog.d/3172.enhance.rst b/changelog.d/3172.enhance.rst new file mode 100644 index 000000000..8838abbed --- /dev/null +++ b/changelog.d/3172.enhance.rst @@ -0,0 +1 @@ +Clarified that ``[p]backup`` saves the **bot's** data in the help text. diff --git a/redbot/core/core_commands.py b/redbot/core/core_commands.py index f0362b230..763a9391a 100644 --- a/redbot/core/core_commands.py +++ b/redbot/core/core_commands.py @@ -1323,8 +1323,9 @@ class Core(commands.Cog, CoreLogic): @commands.command() @checks.is_owner() async def backup(self, ctx: commands.Context, *, backup_dir: str = None): - """Creates a backup of all data for the instance. + """Creates a backup of all data for this bot instance. + This backs up the bot's data and settings. You may provide a path to a directory for the backup archive to be placed in. If the directory does not exist, the bot will attempt to create it.