Skip to content

Commit

Permalink
fix oopsie
Browse files Browse the repository at this point in the history
  • Loading branch information
ILike2WatchMemes committed Jul 3, 2024
1 parent c41527b commit aee298d
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ object ExperimentsDisplay {
foundPowerUps[slot] = reward
possiblePairs--
lastClicked.removeIf { it.first == slot }
if (reward != "Instant Find") instantFind = true
if (reward == "Instant Find") instantFind = true
}

private fun handleReward(index: Int, slot: Int, uncovered: Int, reward: String) {
Expand Down Expand Up @@ -214,7 +214,8 @@ object ExperimentsDisplay {
if (foundNormals.isNotEmpty()) toAdd.add("§7Normals - ${foundNormals.size}")

if (toAdd.isNotEmpty()) {
add(""); add("§4Not found")
add("")
add("§4Not found")
}
for (string in toAdd) if (string != toAdd.last()) add("$string") else add("$string")
}
Expand Down

0 comments on commit aee298d

Please sign in to comment.