mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-17 12:54:08 +00:00
CStreaming done, hopefully
This commit is contained in:
parent
857cef776d
commit
a6fe606ce6
9 changed files with 387 additions and 188 deletions
|
@ -3001,6 +3001,22 @@ CPed::CanBeDeleted(void)
|
|||
}
|
||||
}
|
||||
|
||||
//--MIAMI: done
|
||||
bool
|
||||
CPed::CanBeDeletedEvenInVehicle(void)
|
||||
{
|
||||
switch (CharCreatedBy) {
|
||||
case RANDOM_CHAR:
|
||||
return true;
|
||||
case MISSION_CHAR:
|
||||
return false;
|
||||
case TODO_CHAR:
|
||||
return false;
|
||||
default:
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
// --MIAMI: Done
|
||||
bool
|
||||
CPed::CanPedDriveOff(void)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue