diff options
| author | hannibal2 <24389977+hannibal002@users.noreply.github.com> | 2024-09-05 00:51:21 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-05 00:51:21 +0200 |
| commit | 59eef491fef0d7dd7f4018febe4d91de01369cbe (patch) | |
| tree | db9a99de84cc96198db95047eda524737f6a5db1 /src/main/java/at/hannibal2/skyhanni/features/event | |
| parent | bf152b4376c453f9eee76a6521377cc4062e9838 (diff) | |
| download | skyhanni-59eef491fef0d7dd7f4018febe4d91de01369cbe.tar.gz skyhanni-59eef491fef0d7dd7f4018febe4d91de01369cbe.tar.bz2 skyhanni-59eef491fef0d7dd7f4018febe4d91de01369cbe.zip | |
Backend: Added Tags to Graph Editor (#2464)
Co-authored-by: Thunderblade73 <85900443+thunderblade73@users.noreply.github.com>
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/event')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/event/hoppity/HoppityCollectionStats.kt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/event/hoppity/HoppityCollectionStats.kt b/src/main/java/at/hannibal2/skyhanni/features/event/hoppity/HoppityCollectionStats.kt index f4d98e782..a06b3dcbc 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/event/hoppity/HoppityCollectionStats.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/event/hoppity/HoppityCollectionStats.kt @@ -9,6 +9,7 @@ import at.hannibal2.skyhanni.events.InventoryFullyOpenedEvent import at.hannibal2.skyhanni.features.inventory.chocolatefactory.ChocolateFactoryAPI import at.hannibal2.skyhanni.skyhannimodule.SkyHanniModule import at.hannibal2.skyhanni.utils.ChatUtils +import at.hannibal2.skyhanni.utils.CollectionUtils.addString import at.hannibal2.skyhanni.utils.CollectionUtils.collectWhile import at.hannibal2.skyhanni.utils.CollectionUtils.consumeWhile import at.hannibal2.skyhanni.utils.DisplayTableEntry @@ -220,7 +221,7 @@ object HoppityCollectionStats { val foundRabbitCount = getFoundRabbitsFromHypixel(event) if (loggedRabbitCount < foundRabbitCount) { - newList.add(Renderable.string("")) + newList.addString("") newList.add( Renderable.wrappedString( "§cPlease Scroll through \n" + "§call pages!", |
