diff --git a/ReallifeGamemode.Server/Commands/FactionCommands.cs b/ReallifeGamemode.Server/Commands/FactionCommands.cs index 71039fd7..9d90d3a2 100644 --- a/ReallifeGamemode.Server/Commands/FactionCommands.cs +++ b/ReallifeGamemode.Server/Commands/FactionCommands.cs @@ -102,7 +102,7 @@ namespace ReallifeGamemode.Server.Commands dbContext.GangChatLogs.Add(logEntry); dbContext.SaveChanges(); - string broadcastMessage = "!{CC3333}** [" + factionName + "] " + player.Name + ": " + message + " **"; + string broadcastMessage = "!{E52222}** [" + factionName + "] " + player.Name + ": " + message + " **"; using (var context = new DatabaseContext()) { ChatService.BroadcastFaction(broadcastMessage, context.Factions.ToList().FindAll(c => c.GangOwned), true, (admin) => admin.HasData("togga"));