From b01baa7302ca8785910bef3492512ad3bfaa29b8 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Tue, 20 Sep 2022 02:40:05 -0500 Subject: [PATCH] Fix money bug --- scripts/client/utilities.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/client/utilities.js b/scripts/client/utilities.js index 3b2ff03a..232d6281 100644 --- a/scripts/client/utilities.js +++ b/scripts/client/utilities.js @@ -594,7 +594,7 @@ function updateLocalPlayerMoney() { } if (typeof localPlayer.money != "undefined") { - localPlayer.money = toInteger(amount); + localPlayer.money = toInteger(localPlayerMoney); } if (getGame() == AGRP_GAME_GTA_IV) {