(svn r16556) -Codechange [NoAI]: use accessor for AIInstance::is_dead

pull/155/head
smatz 16 years ago
parent 7d4d3850cb
commit f67ea11992

@ -272,7 +272,7 @@ void AIInstance::Died()
void AIInstance::GameLoop()
{
if (this->is_dead) return;
if (this->IsDead()) return;
if (this->engine->HasScriptCrashed()) {
/* The script crashed during saving, kill it here. */
this->Died();
@ -338,7 +338,7 @@ void AIInstance::GameLoop()
void AIInstance::CollectGarbage()
{
if (this->is_started && !this->is_dead) this->engine->CollectGarbage();
if (this->is_started && !this->IsDead()) this->engine->CollectGarbage();
}
/* static */ void AIInstance::DoCommandReturn(AIInstance *instance)

@ -80,6 +80,11 @@ public:
*/
class AIController *GetController() { return controller; }
/**
* Return the "this AI died" value
*/
inline bool IsDead() { return this->is_dead; }
/**
* Call the AI Save function and save all data in the savegame.
*/

Loading…
Cancel
Save