--- id: f7824582-0d80-401e-bd5b-c23ced0b737a type: fix title: "Draft monitor missing guild variable" tags: [major-domo, python, fix, discord, draft] importance: 0.6 confidence: 0.8 created: "2025-12-13T00:46:25.432142+00:00" updated: "2026-02-20T04:32:58.534513+00:00" relations: - target: e4f0bee9-9dc0-4bff-8d07-ba8aa22ef83d type: BUILDS_ON direction: outgoing strength: 0.85 edge_id: ff9d7164-7090-44ae-a3d5-7cbdd7bc33ef --- Bug: The _post_on_clock_announcement method in tasks/draft_monitor.py referenced 'guild' variable without defining it, causing role pings to silently fail after auto-draft picks. Fix: Added guild lookup from bot.get_guild(config.guild_id) at the start of the method. This was causing the draft results ping to not post the team role mention.