Skip to content

Commit

Permalink
Merge pull request #194 from steve1316/fix-nm100
Browse files Browse the repository at this point in the history
Fix list index for Guild Wars NM100
  • Loading branch information
steve1316 authored Apr 24, 2023
2 parents 144b902 + 8d97544 commit 4b1264e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-tauri/backend/bot/game_modes/guild_wars.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 4b1264e

Please sign in to comment.