From 60ce2173fb1a6a08bf58f38c12ffc6e54225e81d Mon Sep 17 00:00:00 2001 From: aviate <40-aviate@users.noreply.development.life-of-german.org> Date: Tue, 3 Sep 2019 20:35:06 +0200 Subject: [PATCH] fix --- ReallifeGamemode.Server/Report/Report.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ReallifeGamemode.Server/Report/Report.cs b/ReallifeGamemode.Server/Report/Report.cs index 41b3856c..172eb2d0 100644 --- a/ReallifeGamemode.Server/Report/Report.cs +++ b/ReallifeGamemode.Server/Report/Report.cs @@ -128,8 +128,8 @@ namespace ReallifeGamemode.Server.Report } else { - ChatService.SendMessage(client, "!{#008fff}[REPORT]!{#FFFFFF}" + client.Name + ": " + text); - ChatService.SendMessage(user, "!{#008fff}[REPORT]!{#FFFFFF}" + client.Name + ": " + text); + ChatService.SendMessage(client, "!{#008fff}[REPORT]!{#FFFFFF} " + client.Name + ": " + text); + ChatService.SendMessage(user, "!{#008fff}[REPORT]!{#FFFFFF} " + client.Name + ": " + text); } } else @@ -185,12 +185,12 @@ namespace ReallifeGamemode.Server.Report } ChatService.SendMessage(user, "!{#addc8d}Dein Ticket wurde abgeschickt"); ChatService.SendMessage(user, "!{#addc8d}Momentan sind " + UserHelper.dutyAdmins.Count + " Admins verfügbar"); - ChatService.BroadcastDutyAdmin("!{#008fff}[TICKET]!{#FFFFFF} Eingehendes Ticket von~y~ " + user.Name + ": " + text + " (Benutze /showtickets)"); + ChatService.BroadcastDutyAdmin("!{#008fff}[TICKET]!{#FFFFFF} Eingehendes Ticket von~r~ " + user.Name + "~w~: " + text + " (Benutze /showtickets)"); ReportManage ticket = new ReportManage(user.Name, text); listReports.Add(ticket); } if (type == "Quick Report") - ChatService.BroadcastAdmin("!{#008fff}[QR] ~y~" + user.Name + "~w~: " + text, AdminLevel.SUPPORTER); + ChatService.BroadcastAdmin("!{#008fff}[QR]~r~ " + user.Name + "~w~: " + text, AdminLevel.SUPPORTER); } [RemoteEvent("deleteReport")]