Skip to content

Commit e744b8b

Browse files
committed
enhance(plugin25): improve team stats display
1 parent 3d87564 commit e744b8b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

plugin2025/src/main/kotlin/sc/plugin2025/GameState.kt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -310,9 +310,10 @@ data class GameState @JvmOverloads constructor(
310310
override fun teamStats(team: ITeam) =
311311
getHare(team).run {
312312
listOf(
313-
Stat(" ⃞ Position", this.position),
314-
Stat("▾ Karotten", this.carrots),
315-
Stat("Salate", this.salads, ""),
313+
Stat("Position", this.position),
314+
Stat("Karotten ▾", this.carrots),
315+
Stat("Salate", this.salads,
316+
(if(System.getProperty("os.name").contains("mac")) "" else " ") + ""),
316317
//Stat("Karten", this.getCards().count(), "◼ "),
317318
)
318319
}

0 commit comments

Comments
 (0)