From 373f87de0c2e5690a117d813353e2bc85ae2ba9e Mon Sep 17 00:00:00 2001 From: Julie Marchant Date: Wed, 12 Jun 2019 17:53:23 -0400 Subject: [PATCH] Added a condition I forgot The collision behavior in the original had an exception for Ellesh. Added this exception in. --- src/alien.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/alien.c b/src/alien.c index 617ec95..a97d60c 100644 --- a/src/alien.c +++ b/src/alien.c @@ -1813,7 +1813,7 @@ void alien_move(Object *alien) { if ((game.difficulty == DIFFICULTY_ORIGINAL) && (alien->classDef != CD_DRONE) && (alien->classDef != CD_ASTEROID) && (alien->classDef != CD_ASTEROID2) && - (alien->owner == alien)) + (alien->owner == alien) && (game.area != MISN_ELLESH)) { collided = 1; }