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"); } }