From 8c111e3516f3a115750a25d944f016c11b0627ec Mon Sep 17 00:00:00 2001 From: hydrant Date: Tue, 3 Sep 2019 19:49:54 +0200 Subject: [PATCH] fix --- ReallifeGamemode.Client/Player/reportmenu.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }