Changed timer to 60 seconds

This commit is contained in:
2026-01-25 19:01:20 -05:00
parent 055abd501f
commit 3e57c91b14
3 changed files with 26 additions and 14 deletions

View File

@@ -353,12 +353,12 @@ assignment_manager = None
@bot.event
async def on_ready():
global assignment_manager
print(f"Discord bot logged in as {bot.user.name} (ID: {bot.user.id})")
print(f"Bot is in {len(bot.guilds)} server(s)")
print(f"Discord bot logged in as {bot.user.name} (ID: {bot.user.id})")
print(f"Bot is in {len(bot.guilds)} server(s)")
# Initialize assignment manager
assignment_manager = BotAssignmentManager(bot)
print("Bot assignment manager initialized")
print("Bot assignment manager initialized")
async def start_bot():
try: