We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4b4607 commit 468d8d1Copy full SHA for 468d8d1
scripts/src/main/java/io/github/fate_grand_automata/scripts/entrypoints/AutoBattle.kt
@@ -340,11 +340,11 @@ class AutoBattle @Inject constructor(
340
}
341
342
private fun isInOrdealCallConfirmPodUseScreen(): Boolean {
343
- return images[Images.StartQuest] in locations.ordealCallConfirmPodUseRegion
+ return findImage(locations.ordealCallConfirmPodUseRegion, Images.StartQuest)
344
345
346
private fun isInOrdealCallOutOfPodsScreen(): Boolean {
347
- return images[Images.Close] in locations.ordealCallOutOfPodsRegion
+ return findImage(locations.ordealCallOutOfPodsRegion, Images.Close)
348
349
350
private fun ordealCallOutOfPods() {
0 commit comments