mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 18:08:59 +00:00
blah
This commit is contained in:
parent
d1c6a6aaa6
commit
0c34fb1bb2
2 changed files with 3 additions and 3 deletions
|
@ -5,7 +5,7 @@ class CStats
|
||||||
public:
|
public:
|
||||||
static int32 &DaysPassed;
|
static int32 &DaysPassed;
|
||||||
static int32 &HeadShots;
|
static int32 &HeadShots;
|
||||||
static bool& CommercialPassed;
|
static bool& CommercialPassed;
|
||||||
static int32 &NumberKillFrenziesPassed;
|
static int32 &NumberKillFrenziesPassed;
|
||||||
static int32 &PeopleKilledByOthers;
|
static int32 &PeopleKilledByOthers;
|
||||||
|
|
||||||
|
|
|
@ -2702,9 +2702,9 @@ CPed::QuitEnteringCar(void)
|
||||||
bUsesCollision = true;
|
bUsesCollision = true;
|
||||||
|
|
||||||
if (IsPlayer() && GetWeapon()->m_eWeaponType == WEAPONTYPE_UZI) {
|
if (IsPlayer() && GetWeapon()->m_eWeaponType == WEAPONTYPE_UZI) {
|
||||||
if (IsPlayer() && m_storedWeapon != NO_STORED_WEAPON) {
|
if (IsPlayer() && m_storedWeapon != WEAPONTYPE_UNIDENTIFIED) {
|
||||||
SetCurrentWeapon(m_storedWeapon);
|
SetCurrentWeapon(m_storedWeapon);
|
||||||
m_storedWeapon = NO_STORED_WEAPON;
|
m_storedWeapon = WEAPONTYPE_UNIDENTIFIED;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
CWeaponInfo *curWeapon = CWeaponInfo::GetWeaponInfo(GetWeapon()->m_eWeaponType);
|
CWeaponInfo *curWeapon = CWeaponInfo::GetWeaponInfo(GetWeapon()->m_eWeaponType);
|
||||||
|
|
Loading…
Reference in a new issue