diff --git a/ReallifeGamemode.Client/Gui/blips.ts b/ReallifeGamemode.Client/Gui/blips.ts index 92edc407..a5e19042 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.name); + mp.gui.chat.push(entity.name); let color = parseInt(entity.getVariable("blipColor")); if (entity.blip == 0) entity.createBlip(1); entity.setBlipColor(isNaN(color) ? 0 : color);