diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-07-12 17:01:28 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-07-12 17:01:28 +0200 |
commit | ac5a43c8b7efc47e8daf30c07c7e9ab331a923a4 (patch) | |
tree | 7f6859304f3028f5d1df2c1c0f052f4ac3e5b692 /src/main/java/at | |
parent | 7467259b28471b46a5dd3571fa4a2329abe5fe4f (diff) | |
download | skyhanni-ac5a43c8b7efc47e8daf30c07c7e9ab331a923a4.tar.gz skyhanni-ac5a43c8b7efc47e8daf30c07c7e9ab331a923a4.tar.bz2 skyhanni-ac5a43c8b7efc47e8daf30c07c7e9ab331a923a4.zip |
Fixed composter inventory numbers
Diffstat (limited to 'src/main/java/at')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/garden/composter/ComposterInventoryNumbers.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/composter/ComposterInventoryNumbers.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/composter/ComposterInventoryNumbers.kt index b8a7a4fc3..11680d0a0 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/composter/ComposterInventoryNumbers.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/composter/ComposterInventoryNumbers.kt @@ -26,7 +26,7 @@ class ComposterInventoryNumbers { val slotNumber = event.slot.slotNumber // Composts Available - if (slotNumber == 22) { + if (slotNumber == 13) { for (line in stack.getLore()) { compostsPattern.matchMatcher(line) { val total = group("amount").replace(",", "").toInt() @@ -55,7 +55,7 @@ class ComposterInventoryNumbers { "§e" } else { // Fuel - event.offsetY = -76 + event.offsetY = -41 event.offsetX = -20 "§a" } |