We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d87564 commit e744b8bCopy full SHA for e744b8b
plugin2025/src/main/kotlin/sc/plugin2025/GameState.kt
@@ -310,9 +310,10 @@ data class GameState @JvmOverloads constructor(
310
override fun teamStats(team: ITeam) =
311
getHare(team).run {
312
listOf(
313
- Stat(" ⃞ Position", this.position),
314
- Stat("▾ Karotten", this.carrots),
315
- Stat("Salate", this.salads, " ⃝ "),
+ Stat("Position", this.position),
+ Stat("Karotten ▾", this.carrots),
+ Stat("Salate", this.salads,
316
+ (if(System.getProperty("os.name").contains("mac")) "" else " ") + " ⃝ "),
317
//Stat("Karten", this.getCards().count(), "◼ "),
318
)
319
}
0 commit comments