Merge pull request #689 from jack9267/master

Call CWorld::Remove before the delete
This commit is contained in:
Nikolay Korolev
2020-08-18 18:06:04 +03:00
committed by GitHub

View File

@@ -117,8 +117,7 @@ CPopulation::Initialise()
void void
CPopulation::RemovePed(CPed *ent) CPopulation::RemovePed(CPed *ent)
{ {
// CPed dtor already does that CWorld::Remove((CEntity*)ent);
// CWorld::Remove((CEntity*)ent);
delete ent; delete ent;
} }