diff --git a/ReallifeGamemode.Server/Report/Report.cs b/ReallifeGamemode.Server/Report/Report.cs index d8a50fdc..34c9552b 100644 --- a/ReallifeGamemode.Server/Report/Report.cs +++ b/ReallifeGamemode.Server/Report/Report.cs @@ -108,15 +108,15 @@ namespace ReallifeGamemode.Server.Report if (text.Equals("quit")) { - ChatService.SendMessage(user, "~y~(REPORT) Chat vom Admin beendet"); - ChatService.SendMessage(client, "~y~(REPORT) Chat beendet"); + ChatService.SendMessage(user, "~y~[REPORT] Chat vom Admin beendet"); + ChatService.SendMessage(client, "~y~[REPORT] Chat beendet"); listReports.Remove(temp); return; } else{ - ChatService.SendMessage(client, "~y~(REPORT) " + client.Name + ": " + text); - ChatService.SendMessage(user, "~y~(REPORT) " + username + ": " + text); + ChatService.SendMessage(client, "~y~[REPORT] " + client.Name + ": " + text); + ChatService.SendMessage(user, "~y~[REPORT] " + client.Name + ": " + text); } } //Für User @@ -138,8 +138,8 @@ namespace ReallifeGamemode.Server.Report return; } Client admin = ClientService.GetClientByNameOrId(adminname); - ChatService.SendMessage(admin, "~y~" + username + " (REPORT): " + text); - ChatService.SendMessage(client, "~y~" + username + " (REPORT): " + text); + ChatService.SendMessage(admin, "~y~[REPORT] " + client.Name + ": " + text); + ChatService.SendMessage(client, "~y~[REPORT] " + client.Name + ": " + text); } }