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/mining | |
| 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/mining')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/mining/TunnelsMaps.kt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/mining/TunnelsMaps.kt b/src/main/java/at/hannibal2/skyhanni/features/mining/TunnelsMaps.kt index d2d351878..b6c1c81d0 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/mining/TunnelsMaps.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/mining/TunnelsMaps.kt @@ -21,6 +21,7 @@ import at.hannibal2.skyhanni.events.LorenzWarpEvent import at.hannibal2.skyhanni.events.RepositoryReloadEvent import at.hannibal2.skyhanni.skyhannimodule.SkyHanniModule import at.hannibal2.skyhanni.test.command.ErrorManager +import at.hannibal2.skyhanni.utils.CollectionUtils.addString import at.hannibal2.skyhanni.utils.CollectionUtils.filterNotNullKeys import at.hannibal2.skyhanni.utils.ColorUtils.getFirstColorCode import at.hannibal2.skyhanni.utils.ColorUtils.toChromaColor @@ -284,12 +285,12 @@ object TunnelsMaps { ), ) } else { - add(Renderable.string("")) + addString("") } } } else { - add(Renderable.string("")) - add(Renderable.string("")) + addString("") + addString("") } addAll(locationDisplay) } |
