Merge branch '1.4.0-prep' into ragemp

This commit is contained in:
Vortrex
2022-03-08 10:33:23 -06:00
4 changed files with 33 additions and 10 deletions

View File

@@ -155,6 +155,18 @@ function setVehicleHeading(vehicle, heading) {
// ===========================================================================
function getElementTransient(element) {
return element.transient;
}
// ===========================================================================
function setElementTransient(element, state) {
return element.transient = state;
}
// ===========================================================================
function getVehicleSyncer(vehicle) {
return getElementSyncer(vehicle);
}
@@ -342,7 +354,7 @@ function setElementDimension(element, dimension) {
// ===========================================================================
function setElementRotation(element, rotation) {
return element.setRotation(rotation);
return element.rotation = rotation;
}
// ===========================================================================
@@ -500,7 +512,7 @@ function getVehicleEngine(vehicle) {
// ===========================================================================
function getVehicleLocked(vehicle) {
return vehicle.locked;
return vehicle.lockedStatus;
}
// ===========================================================================