1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-06-30 22:17:13 +02:00

Fix a spelling mistake in event names.

This commit is contained in:
Sandu Liviu Catalin
2016-08-20 21:14:03 +03:00
parent a35b127871
commit ce7aed075c
7 changed files with 27 additions and 27 deletions

View File

@ -16,7 +16,7 @@ enum VehicleCircularLocks
VEHICLECL_EMIT_VEHICLE_WORLD = (2 << 0),
VEHICLECL_EMIT_VEHICLE_IMMUNITY = (3 << 0),
VEHICLECL_EMIT_VEHICLE_PARTSTATUS = (4 << 0),
VEHICLECL_EMIT_VEHICLE_TYRESTATUS = (5 << 0),
VEHICLECL_EMIT_VEHICLE_TIRESTATUS = (5 << 0),
VEHICLECL_EMIT_VEHICLE_DAMAGEDATA = (6 << 0),
VEHICLECL_EMIT_VEHICLE_RADIO = (7 << 0),
VEHICLECL_EMIT_VEHICLE_HANDLINGRULE = (8 << 0)
@ -538,14 +538,14 @@ public:
void SetPartStatus(Int32 part, Int32 status);
/* --------------------------------------------------------------------------------------------
* Retrieve the tyre status of the managed vehicle entity.
* Retrieve the tire status of the managed vehicle entity.
*/
Int32 GetTyreStatus(Int32 tyre) const;
Int32 GetTireStatus(Int32 tire) const;
/* --------------------------------------------------------------------------------------------
* Modify the tyre status of the managed vehicle entity.
* Modify the tire status of the managed vehicle entity.
*/
void SetTyreStatus(Int32 tyre, Int32 status);
void SetTireStatus(Int32 tire, Int32 status);
/* --------------------------------------------------------------------------------------------
* Retrieve the damage data of the managed vehicle entity.