From 4eaf226349e834c93c662c71d6da15421a4cba24 Mon Sep 17 00:00:00 2001 From: Gregory Rudolph Date: Fri, 17 Sep 2021 10:40:18 -0400 Subject: [PATCH] Show GMs differently in Announcements --- Pages/Index.cshtml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {