From 22499a3f5175dc09ca30d395bd4d481c4dfef2f7 Mon Sep 17 00:00:00 2001 From: Lukas Moungos Date: Sun, 21 Jul 2019 21:37:07 +0200 Subject: [PATCH] Removed Blip alpha channel for PlayerBlip --- ReallifeGamemode.Client/Gui/blips.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/ReallifeGamemode.Client/Gui/blips.ts b/ReallifeGamemode.Client/Gui/blips.ts index 18b42ce0..5809ce1f 100644 --- a/ReallifeGamemode.Client/Gui/blips.ts +++ b/ReallifeGamemode.Client/Gui/blips.ts @@ -10,7 +10,6 @@ export default function playerBlips() { if (entity.type === "player") { let color = parseInt(entity.getVariable("blipColor")); if (entity.blip == 0) entity.createBlip(1); - entity.blip.alpha = 125; entity.setBlipColor(isNaN(color) ? 0 : color); mp.game.invoke(Natives.SET_BLIP_CATEGORY, entity.blip, 7); mp.game.invoke(Natives.SHOW_HEADING_INDICATOR_ON_BLIP, entity.blip, true);