Skip to content

Commit

Permalink
Fix: Fixed "Hide Empty Numbers" not hiding empty coop banks (Custom S…
Browse files Browse the repository at this point in the history
…coreboard) (#1328)
  • Loading branch information
j10a1n15 authored Apr 1, 2024
1 parent 557b122 commit ab5b870
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ private fun getBankDisplayPair(): List<ScoreboardElementType> {

return listOf(
when {
informationFilteringConfig.hideEmptyLines && bank == "0" -> "<hidden>"
informationFilteringConfig.hideEmptyLines && (bank == "0" || bank == "0§7 / §60") -> "<hidden>"
displayConfig.displayNumbersFirst -> "§6$bank Bank"
else -> "Bank: §6$bank"
} to HorizontalAlignment.LEFT
Expand Down

0 comments on commit ab5b870

Please sign in to comment.