Fixed to check for when Players are equal to 1

This commit is contained in:
ZestyTS 2021-04-14 22:55:21 -07:00
parent c1e024b666
commit cf7a30ae30

View file

@ -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,