Skip to content
This repository was archived by the owner on Feb 7, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from discord import ApplicationContext, option
from discord.ext import commands
from discord.ext.commands import *
from economy import get_wallet, get_bank, new_bank, new_wallet
from cogs.economy import get_wallet, get_bank, new_bank, new_wallet

# Slash option types:
# Just use variable types to define option types.
Expand Down Expand Up @@ -435,7 +435,7 @@ async def stats(ctx: ApplicationContext, user: discord.User):
for x in active_cogs:
print(f"[main/Cogs] Loading isobot Cog ({i}/{len(active_cogs)})")
i += 1
try: client.load_extension(x)
try: client.load_extension(f"cogs.{x}")
except Exception as e:
cog_errors += 1
print(f"[main/Cogs] {colors.red}ERROR: Cog \"{x}\" failed to load: {e}{colors.end}")
Expand Down