From fcec30de708a274a549c7cc92b3af62fe43490bf Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Sun, 27 Dec 2020 12:30:14 -0600 Subject: [PATCH] Add buying veh to client data class --- scripts/server/class.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/server/class.js b/scripts/server/class.js index 50dd1cd8..634cf162 100644 --- a/scripts/server/class.js +++ b/scripts/server/class.js @@ -104,6 +104,8 @@ function initClassTable() { this.garbageRouteIsland = null; this.spawned = false; + + this.buyingVehicle = false; } }, accountData: class { @@ -126,7 +128,7 @@ function initClassTable() { this.discordAccount = accountAssoc["acct_discord"]; this.settings = accountAssoc["acct_settings"]; this.emailAddress = accountAssoc["acct_email"]; - this.ipAddress = accountAssoc["acct_ip"]; + this.ipAddress = accountAssoc["ip"]; this.notes = []; this.messages = [];