| 93 | } |
| 94 | |
| 95 | void ScenarioExt::ExtData::UpdateAutoDeathObjectsInLimbo() |
| 96 | { |
| 97 | for (auto const pExt : this->AutoDeathObjects) |
| 98 | { |
| 99 | auto const pTechno = pExt->OwnerObject(); |
| 100 | |
| 101 | if (!pTechno->IsInLogic && pTechno->IsAlive) |
| 102 | pExt->CheckDeathConditions(true); |
| 103 | } |
| 104 | } |
| 105 | |
| 106 | void ScenarioExt::ExtData::UpdateTransportReloaders() |
| 107 | { |
no test coverage detected