From 5f3fd1c80c7adb378cb3df230e9ec269b1d2bcf8 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Mon, 28 Dec 2020 12:51:13 -0600 Subject: [PATCH] Add int/vw to job loc class --- scripts/server/class.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/server/class.js b/scripts/server/class.js index 7f3da760..57ffafbd 100644 --- a/scripts/server/class.js +++ b/scripts/server/class.js @@ -587,6 +587,8 @@ function initClassTable() { this.blip = false; this.pickup = false; this.enabled = false; + this.interior = 0; + this.dimension = 0; if(!jobLocationAssoc) { this.databaseId = jobLocationAssoc["job_loc_id"]; @@ -597,6 +599,8 @@ function initClassTable() { this.blip = false; this.pickup = false; this.enabled = jobLocationAssoc["job_loc_enabled"]; + this.interior = jobLocationAssoc["job_loc_int"]; + this.dimension = jobLocationAssoc["job_loc_vw"]; } } },