Revert "Merge branch '1.4.0-prep' into ragemp"

This reverts commit 197256da4f, reversing
changes made to 6bc770d906.
This commit is contained in:
Vortrex
2022-03-08 10:33:54 -06:00
parent 197256da4f
commit c933c32ac3
4 changed files with 10 additions and 33 deletions

View File

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