mirror of
https://github.com/stuff-by-3-random-dudes/UWUVCI-AIO-WPF
synced 2024-11-22 19:13:11 +00:00
Fixed to check for when Players are equal to 1
This commit is contained in:
parent
c1e024b666
commit
cf7a30ae30
1 changed files with 1 additions and 1 deletions
|
@ -184,7 +184,7 @@ namespace UWUVCI_AIO_WPF.Classes
|
|||
|
||||
if (Players > 0)
|
||||
{
|
||||
string pStr = "1-" + (Players >= 4 ? "4" : Players.ToString());
|
||||
string pStr = Players >= 4 ? "1-4" : (Players == 1 ? "1" : "1-" + Players.ToString());
|
||||
GraphicsPath p = new GraphicsPath();
|
||||
|
||||
p.AddString("Players: " + pStr, font.FontFamily,
|
||||
|
|
Loading…
Reference in a new issue