summaryrefslogtreecommitdiffstats
path: root/src/vehicles/Vehicle.h
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2020-05-22 23:55:29 +0200
committerGitHub <noreply@github.com>2020-05-22 23:55:29 +0200
commit8fb72afac96434153d948d91685f7291e9b946d9 (patch)
tree25d4899924a591e4dafd44caf488dd9bf62db95e /src/vehicles/Vehicle.h
parentMerge pull request #579 from Xinerki/miami (diff)
parentMerge remote-tracking branch 'upstream/miami' into miami (diff)
downloadre3-8fb72afac96434153d948d91685f7291e9b946d9.tar
re3-8fb72afac96434153d948d91685f7291e9b946d9.tar.gz
re3-8fb72afac96434153d948d91685f7291e9b946d9.tar.bz2
re3-8fb72afac96434153d948d91685f7291e9b946d9.tar.lz
re3-8fb72afac96434153d948d91685f7291e9b946d9.tar.xz
re3-8fb72afac96434153d948d91685f7291e9b946d9.tar.zst
re3-8fb72afac96434153d948d91685f7291e9b946d9.zip
Diffstat (limited to 'src/vehicles/Vehicle.h')
-rw-r--r--src/vehicles/Vehicle.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/vehicles/Vehicle.h b/src/vehicles/Vehicle.h
index 0b7d3cba..e07c2768 100644
--- a/src/vehicles/Vehicle.h
+++ b/src/vehicles/Vehicle.h
@@ -183,11 +183,11 @@ public:
uint8 bIsCarParkVehicle : 1; // Car has been created using the special CAR_PARK script command
uint8 bHasAlreadyBeenRecorded : 1; // Used for replays
uint8 bPartOfConvoy : 1;
- //uint8 bHeliMinimumTilt : 1; // This heli should have almost no tilt really
+ uint8 bHeliMinimumTilt : 1; // This heli should have almost no tilt really
//uint8 bAudioChangingGear : 1; // sounds like vehicle is changing gear
uint8 bIsDrowning : 1; // is vehicle occupants taking damage in water (i.e. vehicle is dead in water)
- //uint8 bTyresDontBurst : 1; // If this is set the tyres are invincible
+ uint8 bTyresDontBurst : 1; // If this is set the tyres are invincible
uint8 bCreatedAsPoliceVehicle : 1;// True if this guy was created as a police vehicle (enforcer, policecar, miamivice car etc)
//uint8 bRestingOnPhysical : 1; // Dont go static cause car is sitting on a physical object that might get removed
uint8 bParking : 1;
@@ -318,6 +318,7 @@ public:
#endif
static bool m_bDisableMouseSteering;
static bool bDisableRemoteDetonation;
+ static bool bDisableRemoteDetonationOnContact;
};
void DestroyVehicleAndDriverAndPassengers(CVehicle* pVehicle);