From 2f48ff6c56db96fb2c0a51d9e4a6522e07ab1339 Mon Sep 17 00:00:00 2001 From: Yohann Ferreira Date: Tue, 15 Mar 2011 19:22:48 +0100 Subject: Fixed a small condition. Should be invisible on behaviour change. --- src/being.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/being.cpp b/src/being.cpp index fc2f2f2d..8c7f45bb 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -680,7 +680,7 @@ void Being::logic() mPath.front().y); // Avoid going to flawed destinations - if (mDest.x <= 0 && mDest.y <= 0) + if (mDest.x <= 0 || mDest.y <= 0) { // We make the being stop move in that case. mDest = mPos; -- cgit v1.2.3-70-g09d2