mirror of
https://github.com/spiffcode/hostile-takeover.git
synced 2026-04-29 23:41:38 -06:00
Add missing asserts in Simulation::OneTimeInit()
This commit is contained in:
parent
8a872bad5e
commit
9cd0c1eca0
@ -90,12 +90,16 @@ bool Simulation::OneTimeInit()
|
||||
Assert(fSuccess);
|
||||
Status("Init SpInfantryGob...");
|
||||
fSuccess = fSuccess && SpInfantryGob::InitClass(piniGobTemplates);
|
||||
Assert(fSuccess);
|
||||
Status("Init OvermindGob...");
|
||||
fSuccess = fSuccess && OvermindGob::InitClass(piniGobTemplates);
|
||||
Assert(fSuccess);
|
||||
Status("Init TankShotGob...");
|
||||
fSuccess = fSuccess && TankShotGob::InitClass(piniGobTemplates);
|
||||
Assert(fSuccess);
|
||||
Status("Init RocketGob...");
|
||||
fSuccess = fSuccess && RocketGob::InitClass(piniGobTemplates);
|
||||
Assert(fSuccess);
|
||||
Status("Init BulletGob...");
|
||||
fSuccess = fSuccess && BulletGob::InitClass(piniGobTemplates);
|
||||
Assert(fSuccess);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user