From db005f30fcf1755244833d09ab376a74b90a16b7 Mon Sep 17 00:00:00 2001 From: aviate <40-aviate@users.noreply.development.life-of-german.org> Date: Tue, 30 Jul 2019 14:32:57 +0200 Subject: [PATCH] changed hq message --- ReallifeGamemode.Server/Commands/FactionCommands.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ReallifeGamemode.Server/Commands/FactionCommands.cs b/ReallifeGamemode.Server/Commands/FactionCommands.cs index a04e39c1..5b8a6658 100644 --- a/ReallifeGamemode.Server/Commands/FactionCommands.cs +++ b/ReallifeGamemode.Server/Commands/FactionCommands.cs @@ -287,8 +287,8 @@ namespace ReallifeGamemode.Server.Commands ChatService.ErrorMessage(player, "Der Spieler hat keine Wanteds"); return; } - ChatService.SendMessage(target, "Deine Akte wurde von " + player.Name + " gelöscht. Grund:" + reason); - ChatService.BroadcastFaction("~r~HQ: Die Akte von " + target.Name + " wurde von " + player.Name + " gelöscht. Grund: " + reason + ".", new List() { 1, 3 }); + ChatService.SendMessage(target, "~b~Deine Akte wurde von " + player.Name + " gelöscht. Grund:" + reason); + ChatService.BroadcastFaction("~b~HQ: Die Akte von " + target.Name + " wurde von " + player.Name + " gelöscht. Grund: " + reason + ".", new List() { 1, 3 }); targetUser.Wanteds = 0; dbContext.SaveChanges();