aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/features/garden
diff options
context:
space:
mode:
authorEmpa <42304516+ItsEmpa@users.noreply.github.com>2024-04-27 11:38:40 +0200
committerGitHub <noreply@github.com>2024-04-27 11:38:40 +0200
commit8f7e9ae1711ca4172c7a2fe046666d33033906c2 (patch)
tree1ddd52796d272f134df941061d3bb9e51aecfe4e /src/main/java/at/hannibal2/skyhanni/features/garden
parent9881e5a9c876c6b0b85cd1a7b295151467ad4470 (diff)
downloadskyhanni-8f7e9ae1711ca4172c7a2fe046666d33033906c2.tar.gz
skyhanni-8f7e9ae1711ca4172c7a2fe046666d33033906c2.tar.bz2
skyhanni-8f7e9ae1711ca4172c7a2fe046666d33033906c2.zip
Fix: Remove pest error (#1563)
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/garden')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestAPI.kt8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestAPI.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestAPI.kt
index bd0ee5407..98e712167 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestAPI.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestAPI.kt
@@ -132,13 +132,12 @@ object PestAPI {
plot.pests = scoreboardPests - accurateAmount
plot.isPestCountInaccurate = false
} else if (accurateAmount + inaccurateAmount > scoreboardPests) { // when logic fails and we reach impossible pest counts
- sendPestError(true)
getInfestedPlots().forEach {
it.pests = 0
it.isPestCountInaccurate = true
}
if (loop > 0) fixPests(loop - 1)
- else sendPestError(false)
+ else sendPestError()
}
}
@@ -282,13 +281,14 @@ object PestAPI {
updatePests()
}
- private fun sendPestError(betaOnly: Boolean) {
+ private fun sendPestError() {
ErrorManager.logErrorStateWithData(
"Error getting pest count",
"Impossible pest count",
"scoreboardPests" to scoreboardPests,
"plots" to getInfestedPlots().map { "id: ${it.id} pests: ${it.pests} isInaccurate: ${it.isPestCountInaccurate}" },
- noStackTrace = true, betaOnly = betaOnly
+ noStackTrace = true,
+ betaOnly = true
)
}