Skip to content

Commit

Permalink
Cleaned up some code
Browse files Browse the repository at this point in the history
  • Loading branch information
steve1316 committed Nov 8, 2021
1 parent 5d8466a commit 6002d7e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ class Game(val myContext: Context) {
printToLog("\n[TRAINING] Checking for success percentages and total stat increases for training selection...")

// Acquire the position of the speed stat text.
val (speedStatTextLocation, sourceBitmap) = if (campaign == "Ao Haru") {
val (speedStatTextLocation, _) = if (campaign == "Ao Haru") {
imageUtils.findImage("aoharu_stat_speed", region = imageUtils.regionBottomHalf)
} else {
imageUtils.findImage("stat_speed", region = imageUtils.regionBottomHalf)
Expand Down Expand Up @@ -863,7 +863,7 @@ class Game(val myContext: Context) {
true
}
else -> {
printToLog("\n[ENERGY] Failed to recover energy.")
printToLog("\n[ENERGY] Failed to recover energy. Moving on...")
false
}
}
Expand Down Expand Up @@ -905,7 +905,7 @@ class Game(val myContext: Context) {
raceRepeatWarningCheck = false
true
} else {
printToLog("[MOOD] Current mood is good enough. Moving on.")
printToLog("[MOOD] Current mood is good enough. Moving on...")
false
}
}
Expand Down

0 comments on commit 6002d7e

Please sign in to comment.