diff --git a/ReallifeGamemode.Client/Player/reportmenu.ts b/ReallifeGamemode.Client/Player/reportmenu.ts index ad3dfce3..ee770892 100644 --- a/ReallifeGamemode.Client/Player/reportmenu.ts +++ b/ReallifeGamemode.Client/Player/reportmenu.ts @@ -97,7 +97,7 @@ export default function reportList(globalData: GlobalData) { reportMenu = new Menu("QuickReport/Ticket", "", new Point(50, 50), null, null); - reportMenu.AddItem(new UIMenuListItem("Anliegen", "", new ItemsCollection(types))); + reportMenu.AddItem(new UIMenuListItem("Absenden", "", new ItemsCollection(types))); reportMenu.AddItem(sendItem); reportMenu.AddItem(cancelItem); @@ -105,7 +105,7 @@ export default function reportList(globalData: GlobalData) { reportMenu.ListChange.on((item, index) => { switch (item.Text) { - case "Anliegen": + case "Absenden": type = String(item.SelectedItem.DisplayText); break; }