From 0c24aa45c84bf276525cbd82049d5595e0619995 Mon Sep 17 00:00:00 2001 From: Layla Marchant Date: Thu, 24 Dec 2020 15:47:45 -0500 Subject: [PATCH] Adjusted the way FL_ESCAPED is added. --- src/game.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game.c b/src/game.c index a70986b..e384a1a 100644 --- a/src/game.c +++ b/src/game.c @@ -1125,8 +1125,8 @@ static void game_doAliens() if (aliens[i].x >= 5000) { - aliens[i].flags -= FL_LEAVESECTOR; - aliens[i].flags += FL_ESCAPED; + aliens[i].flags &= ~FL_LEAVESECTOR; + aliens[i].flags |= FL_ESCAPED; aliens[i].active = 0; if (aliens[i].classDef == CD_CLOAKFIGHTER)