Skip to content

Commit a129d7b

Browse files
committed
fix(plugin25): omit salad circle padding on macos
1 parent 6605140 commit a129d7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ data class GameState @JvmOverloads constructor(
313313
Stat("Position", this.position),
314314
Stat("Karotten ▾", this.carrots),
315315
Stat("Salate", this.salads,
316-
(if(System.getProperty("os.name").contains("mac")) "" else " ") + ""),
316+
(if(System.getProperty("os.name").contains("mac", ignoreCase = true)) "" else " ") + ""),
317317
//Stat("Karten", this.getCards().count(), "◼ "),
318318
)
319319
}

0 commit comments

Comments
 (0)