aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/data/QuiverAPI.kt
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal002@users.noreply.github.com>2024-05-04 03:35:11 +0200
committerGitHub <noreply@github.com>2024-05-04 03:35:11 +0200
commit2ca66dc5815810b7589ff915b300bd0ccd628b73 (patch)
tree135f3231e0c752768a38363ae41e089247173e7f /src/main/java/at/hannibal2/skyhanni/data/QuiverAPI.kt
parente52d0de329e07ad168bda60f9386fa9e96f38ea7 (diff)
downloadskyhanni-2ca66dc5815810b7589ff915b300bd0ccd628b73.tar.gz
skyhanni-2ca66dc5815810b7589ff915b300bd0ccd628b73.tar.bz2
skyhanni-2ca66dc5815810b7589ff915b300bd0ccd628b73.zip
Fix: Quiver Warning (#1629)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/data/QuiverAPI.kt')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/data/QuiverAPI.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/data/QuiverAPI.kt b/src/main/java/at/hannibal2/skyhanni/data/QuiverAPI.kt
index 662d2e921..af921f22b 100644
--- a/src/main/java/at/hannibal2/skyhanni/data/QuiverAPI.kt
+++ b/src/main/java/at/hannibal2/skyhanni/data/QuiverAPI.kt
@@ -224,7 +224,7 @@ object QuiverAPI {
if (currentArrowType != currentArrow || amount != currentAmount) {
currentArrow = currentArrowType
currentAmount = amount
- QuiverUpdateEvent(currentArrowType, currentAmount, shouldHideAmount()).postAndCatch()
+ QuiverUpdateEvent(currentArrowType, amount, shouldHideAmount()).postAndCatch()
}
}
}