From 4e70145d38731e31dce95601127841d7de96e74f Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Wed, 31 Jan 2024 15:12:34 -0500 Subject: [PATCH] feat(backup): exports will now check if a cog is loaded --- backup/backup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/backup/backup.py b/backup/backup.py index 610417a..2fe0946 100644 --- a/backup/backup.py +++ b/backup/backup.py @@ -59,6 +59,7 @@ class Backup(commands.Cog): if cog.repo_name == repo.name: cog_dict = { "name": cog.name, + "loaded": ctx.bot.get_cog(cog.name) is not None, "pinned": cog.pinned, "commit": cog.commit }