diff --git a/Pages/Index.cshtml.cs b/Pages/Index.cshtml.cs index 81824f3..104e1e7 100644 --- a/Pages/Index.cshtml.cs +++ b/Pages/Index.cshtml.cs @@ -216,7 +216,7 @@ namespace NightmareCoreWeb2.Pages ret += "

Online Players

\n"; foreach (Character c in OnlineCharacters) { - Account a = new Account(c.Username) + Account a = new Account(c.Username); if (a.IsGM) { ret += $"

[GM] {c.Username}: {c.GetRace()} {c.GetClass()}, {c.Name}

"; } else {