From 0b4bd85ea36a7f3063cca2a3c59221854f6cc6c1 Mon Sep 17 00:00:00 2001 From: kookroach <62265045+kookroach@users.noreply.github.com> Date: Mon, 5 Apr 2021 02:01:10 +0200 Subject: [PATCH] try 2 --- 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 eaaa3df1..9288ea96 100644 --- a/ReallifeGamemode.Client/Gui/blips.ts +++ b/ReallifeGamemode.Client/Gui/blips.ts @@ -21,7 +21,7 @@ export default function playerBlips() { (player) => { if (mp.players.local == player) return; - if (mp.players.local.dist(player.position) > 400) + if (mp.players.local.position.subtract(player.position).length() > 400) return; if (!playerBlipMap.has(player)) { let pBlip = mp.blips.new(1, player.position);