From b263c5a3e0fcfb8d400cba806364d31a1d9599cf Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Wed, 9 Mar 2022 02:51:37 -0600 Subject: [PATCH] Add vehdata class members for IV --- scripts/server/class.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/server/class.js b/scripts/server/class.js index a4d92a13..4971aa5c 100644 --- a/scripts/server/class.js +++ b/scripts/server/class.js @@ -864,6 +864,11 @@ class VehicleData { this.index = -1; this.needsSaved = false; + // GTA IV + this.ivNetworkId = -1; + this.syncPosition = toVector3(0.0, 0.0, 0.0); + this.syncHeading = 0.0; + // Ownership this.ownerType = VRR_VEHOWNER_NONE; this.ownerId = 0;