From 1b3bac1d8a05d912736333e5da6ca26f5ac71b19 Mon Sep 17 00:00:00 2001 From: Siga Date: Mon, 23 Mar 2020 16:26:25 +0100 Subject: [PATCH] debug --- ReallifeGamemode.Client/Gui/blips.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReallifeGamemode.Client/Gui/blips.ts b/ReallifeGamemode.Client/Gui/blips.ts index 8751646d..92edc407 100644 --- a/ReallifeGamemode.Client/Gui/blips.ts +++ b/ReallifeGamemode.Client/Gui/blips.ts @@ -8,7 +8,7 @@ export default function playerBlips() { mp.events.add("entityStreamIn", (entity) => { if (entity.type === "player") { - console.log(entity.id); + console.log(entity.name); let color = parseInt(entity.getVariable("blipColor")); if (entity.blip == 0) entity.createBlip(1); entity.setBlipColor(isNaN(color) ? 0 : color);