mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-05 08:25:54 +00:00
bikes in garages + bugfix
This commit is contained in:
parent
e44704dc82
commit
e9e533b0cb
|
@ -3,6 +3,7 @@
|
|||
#include "Garages.h"
|
||||
#include "main.h"
|
||||
|
||||
#include "Bike.h"
|
||||
#ifdef FIX_BUGS
|
||||
#include "Boat.h"
|
||||
#endif
|
||||
|
@ -414,7 +415,8 @@ void CGarage::Update()
|
|||
((CAutomobile*)(FindPlayerVehicle()))->Fix();
|
||||
}
|
||||
else {
|
||||
// TODO(MIAMI): Bike Fix
|
||||
((CBike*)(FindPlayerVehicle()))->m_fFireBlowUpTimer = 0.0f;
|
||||
((CBike*)(FindPlayerVehicle()))->Fix();
|
||||
}
|
||||
FindPlayerVehicle()->m_nDoorLock = CARLOCK_UNLOCKED;
|
||||
++CStats::Sprayings;
|
||||
|
@ -1792,7 +1794,12 @@ CVehicle* CStoredCar::RestoreCar()
|
|||
CVehicle* pVehicle;
|
||||
if (CModelInfo::IsBoatModel(m_nModelIndex))
|
||||
pVehicle = new CBoat(m_nModelIndex, RANDOM_VEHICLE);
|
||||
// else if bike - TODO(MIAMI)
|
||||
else if (CModelInfo::IsBikeModel(m_nModelIndex))
|
||||
{
|
||||
CBike* pBike = new CBike(m_nModelIndex, RANDOM_VEHICLE);
|
||||
pBike->bIsStanding = true;
|
||||
pVehicle = pBike;
|
||||
}
|
||||
else
|
||||
pVehicle = new CAutomobile(m_nModelIndex, RANDOM_VEHICLE);
|
||||
pVehicle->SetPosition(m_vecPos);
|
||||
|
|
|
@ -9976,7 +9976,7 @@ int8 CRunningScript::ProcessCommands1100To1199(int32 command)
|
|||
}
|
||||
case COMMAND_GET_RANDOM_COP_IN_AREA:
|
||||
{
|
||||
CollectParameters(&m_nIp, 4);
|
||||
CollectParameters(&m_nIp, 9);
|
||||
int ped_handle = -1;
|
||||
CVector pos = FindPlayerCoors();
|
||||
float x1 = *(float*)&ScriptParams[0];
|
||||
|
|
Loading…
Reference in a new issue