diff --git a/__pycache__/config.cpython-311.pyc b/__pycache__/config.cpython-311.pyc index 977635f..d8aaf66 100644 Binary files a/__pycache__/config.cpython-311.pyc and b/__pycache__/config.cpython-311.pyc differ diff --git a/services/__pycache__/bot_assignment.cpython-311.pyc b/services/__pycache__/bot_assignment.cpython-311.pyc index b4d6753..c33ff03 100644 Binary files a/services/__pycache__/bot_assignment.cpython-311.pyc and b/services/__pycache__/bot_assignment.cpython-311.pyc differ diff --git a/services/bot_assignment.py b/services/bot_assignment.py index a8d4782..09fec90 100644 --- a/services/bot_assignment.py +++ b/services/bot_assignment.py @@ -199,8 +199,8 @@ class BotAssignmentManager: } # Send Discord message - enemy_link = f"https://www.torn.com/profiles.php?XID={enemy_id}" - message = f"**New target for {discord_user.mention}!**\n\nAttack **{enemy.name}** (Level {enemy.level})\n{enemy_link}\n\nYou have {ASSIGNMENT_TIMEOUT} seconds!" + attack_link = f"https://www.torn.com/loader.php?sid=attack&user2ID={enemy_id}" + message = f"**New target for {discord_user.mention}!**\n\n[**{enemy.name}** (Level {enemy.level})]({attack_link})\n\nYou have {ASSIGNMENT_TIMEOUT} seconds!" try: await discord_user.send(message)