diff --git a/didier/didier.py b/didier/didier.py index cdfa7bd..0d1671c 100644 --- a/didier/didier.py +++ b/didier/didier.py @@ -125,6 +125,10 @@ class Didier(commands.Bot): # Allow checking against initial extensions more easily full_name = parent_path + file + # The currency cog is disabled + if "currency" in file: + continue + # Only take Python files, and ignore the ones starting with an underscore (like __init__ and __pycache__) # Also ignore the files that we have already loaded previously if file.endswith(".py") and not file.startswith("_") and not full_name.startswith(self.initial_extensions):