From 7425bf779d8bd989d51f3844c5e70bbe352962cc Mon Sep 17 00:00:00 2001 From: yexo Date: Mon, 25 May 2009 21:55:47 +0000 Subject: (svn r16425) -Change [FS#2869]: Stop an AI when it takes too long to initialize or load --- src/script/squirrel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/script/squirrel.cpp') diff --git a/src/script/squirrel.cpp b/src/script/squirrel.cpp index f31b813da..6737fd3ef 100644 --- a/src/script/squirrel.cpp +++ b/src/script/squirrel.cpp @@ -209,7 +209,7 @@ bool Squirrel::CallMethod(HSQOBJECT instance, const char *method_name, HSQOBJECT if (ret != NULL) sq_getstackobj(vm, -1, ret); /* Reset the top, but don't do so for the AI main function, as we need * a correct stack when resuming. */ - if (suspend == -1) sq_settop(this->vm, top); + if (!this->IsSuspended()) sq_settop(this->vm, top); /* Restore the return-value location. */ this->vm->_suspended_target = last_target; -- cgit v1.2.3-54-g00ecf