From b4617d9f03079485a40fcf871bf387d7482e97d6 Mon Sep 17 00:00:00 2001 From: Luke Date: Sun, 2 May 2021 22:50:30 +0000 Subject: [PATCH] =?UTF-8?q?bindestrich=20zwischen=20quick=20und=20report?= =?UTF-8?q?=20im=20chat=20hinzugef=C3=BCgt=20+=20/report-=C3=9Cberschrift?= =?UTF-8?q?=20nochmal=20angepasst?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ReallifeGamemode.Client/Player/reportmenu.ts | 2 +- ReallifeGamemode.Server/Report/Report.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ReallifeGamemode.Client/Player/reportmenu.ts b/ReallifeGamemode.Client/Player/reportmenu.ts index 11463ab0..f71426c4 100644 --- a/ReallifeGamemode.Client/Player/reportmenu.ts +++ b/ReallifeGamemode.Client/Player/reportmenu.ts @@ -91,7 +91,7 @@ export default function reportList(globalData: IGlobalData) { var types = ["Ticket", "Quick-Report"]; - reportMenu = new Menu("Support", "", new Point(0, screenRes.y / 3), null, null); + reportMenu = new Menu("Report", "", new Point(0, screenRes.y / 3), null, null); var typesItem = new UIMenuListItem("Typ", "", new ItemsCollection(types)); reportMenu.AddItem(typesItem); diff --git a/ReallifeGamemode.Server/Report/Report.cs b/ReallifeGamemode.Server/Report/Report.cs index 6a0aa883..f48ddb45 100644 --- a/ReallifeGamemode.Server/Report/Report.cs +++ b/ReallifeGamemode.Server/Report/Report.cs @@ -216,7 +216,7 @@ namespace ReallifeGamemode.Server.Report if (type == "Quick-Report") { ChatService.BroadcastAdmin("!{#008fff}[QR]~w~ " + user.Name + " (" + user.Handle.Value + ")~w~: " + text, AdminLevel.SUPPORTER); - user.SendChatMessage("~w~Dein Quick Report wurde an das Adminteam weitergeleitet"); + user.SendChatMessage("~w~Dein Quick-Report wurde an das Adminteam weitergeleitet"); } }