From 8d9754424c0205659fae46fa4ca0fe344155d70a Mon Sep 17 00:00:00 2001 From: Steve Tu Date: Sun, 23 Apr 2023 19:00:35 -0700 Subject: [PATCH] #193 Fix list index for Guild Wars NM100 --- src-tauri/backend/bot/game_modes/guild_wars.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-tauri/backend/bot/game_modes/guild_wars.py b/src-tauri/backend/bot/game_modes/guild_wars.py index 0956482..5ec4eeb 100644 --- a/src-tauri/backend/bot/game_modes/guild_wars.py +++ b/src-tauri/backend/bot/game_modes/guild_wars.py @@ -145,7 +145,7 @@ def _navigate(): elif difficulty == "NM95": MouseUtils.move_and_click_point(nightmare_locations[1][0], nightmare_locations[1][1], "guild_wars_nightmares") else: - MouseUtils.move_and_click_point(nightmare_locations[1][0], nightmare_locations[1][1], "guild_wars_nightmares") + MouseUtils.move_and_click_point(nightmare_locations[2][0], nightmare_locations[2][1], "guild_wars_nightmares") # Check if the Nightmare selection was successful and put the bot into the Support Summon Selection screen. If not, then go back to farm meat. if not ImageUtils.wait_vanish("close", timeout = 10):