mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-10 12:10:34 +00:00
fixed double explosion
This commit is contained in:
parent
c995bdcdaf
commit
8cc3f867a6
2 changed files with 6 additions and 1 deletions
|
@ -1171,7 +1171,10 @@ CVehicle::AddPassenger(CPed *passenger, uint8 n)
|
|||
void
|
||||
CVehicle::RemoveDriver(void)
|
||||
{
|
||||
SetStatus(STATUS_ABANDONED);
|
||||
#ifdef FIX_BUGS
|
||||
if (GetStatus() != STATUS_WRECKED)
|
||||
#endif
|
||||
SetStatus(STATUS_ABANDONED);
|
||||
pDriver = nil;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue