From 5e4a821d6e071156849c1853259c89dc797f4eeb Mon Sep 17 00:00:00 2001 From: VegaZ Date: Mon, 5 Apr 2021 02:23:32 +0200 Subject: [PATCH] Fix Color --- ReallifeGamemode.Server/Events/Key.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ReallifeGamemode.Server/Events/Key.cs b/ReallifeGamemode.Server/Events/Key.cs index d9ff4af9..4891525d 100644 --- a/ReallifeGamemode.Server/Events/Key.cs +++ b/ReallifeGamemode.Server/Events/Key.cs @@ -290,7 +290,7 @@ namespace ReallifeGamemode.Server.Events //nameTagColor = new Color(28, 134, 238); //player.TriggerEvent("setNameTag", JsonConvert.SerializeObject(new int[] { 28, 134, 238 })); player.SetSharedData("nameTagColor", factionId); - player.SetSharedData("blipColor", 26); + player.SetSharedData("blipColor", 38); break; //Medic @@ -305,7 +305,7 @@ namespace ReallifeGamemode.Server.Events case 3: //nameTagColor = new Color(173, 0, 118); player.SetSharedData("nameTagColor", factionId); - player.SetSharedData("blipColor", 38); + player.SetSharedData("blipColor", 54); player.SetAccessories(2, 2, 0); break; }