diff --git a/ReallifeGamemode.Server/Report/Report.cs b/ReallifeGamemode.Server/Report/Report.cs index 4515b634..fe13e47b 100644 --- a/ReallifeGamemode.Server/Report/Report.cs +++ b/ReallifeGamemode.Server/Report/Report.cs @@ -48,6 +48,12 @@ namespace ReallifeGamemode.Server.Report { ReportManage temp = listReports[a]; + if (!temp.getAdmin().Equals("N/A")) + { + listPlayers.Add(temp.getUser()); + listTicketnames.Add(temp.getReporttext()); + } + listPlayers.Add(temp.getUser()); listTicketnames.Add(temp.getReporttext()); } @@ -182,7 +188,7 @@ namespace ReallifeGamemode.Server.Report if (temp.getUser().Equals(player.Name)) { - ChatService.Broadcast("Ticket von " + player.Name + " gelöscht!"); + ChatService.SendMessage(player, user.Name + " hat dein Ticket gelöscht!"); ChatService.BroadcastDutyAdmin(user.Name + " hat das Ticket von " + player.Name + " gelöscht"); listReports.Remove(temp); }