diff --git a/src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/elements/ScoreboardElementChunkedStats.kt b/src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/elements/ScoreboardElementChunkedStats.kt index 7e499199b5e8..08cbe478e448 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/elements/ScoreboardElementChunkedStats.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/elements/ScoreboardElementChunkedStats.kt @@ -1,13 +1,9 @@ package at.hannibal2.skyhanni.features.gui.customscoreboard.elements -import at.hannibal2.skyhanni.data.BitsAPI -import at.hannibal2.skyhanni.data.MiningAPI -import at.hannibal2.skyhanni.data.PurseAPI import at.hannibal2.skyhanni.features.gui.customscoreboard.ChunkedStatsLine.Companion.getChunkedStats import at.hannibal2.skyhanni.features.gui.customscoreboard.ChunkedStatsLine.Companion.shouldShowChunkedStats import at.hannibal2.skyhanni.features.gui.customscoreboard.ChunkedStatsLine.Companion.showChunkedStatsIsland import at.hannibal2.skyhanni.features.gui.customscoreboard.CustomScoreboard.chunkedConfig -import at.hannibal2.skyhanni.features.gui.customscoreboard.ScoreboardPattern // internal, widget and scoreboard // a bit of everything @@ -19,10 +15,5 @@ object ScoreboardElementChunkedStats : ScoreboardElement() { override val configLine = "§652,763,737 §7| §d64,647 §7| §6249M\n§b59,264 §7| §c23,495 §7| §a57,873\n§c♨ 0 §7| §b0❄ §7| §d756" - override val elementPatterns = listOf( - PurseAPI.coinsPattern, ScoreboardPattern.motesPattern, BitsAPI.bitsScoreboardPattern, - ScoreboardPattern.copperPattern, ScoreboardPattern.heatPattern, MiningAPI.coldPattern, ScoreboardPattern.northstarsPattern, - ) - override fun showIsland() = showChunkedStatsIsland() }