From f720d9457c468e3fbc3fa7449d36c30875f0113a Mon Sep 17 00:00:00 2001 From: Steve Date: Mon, 5 Mar 2018 08:38:59 +0000 Subject: [PATCH] Set MIA to foreground when teleporting. --- src/entities/blobs/mia.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/entities/blobs/mia.c b/src/entities/blobs/mia.c index 2d2a42e..ad0a473 100644 --- a/src/entities/blobs/mia.c +++ b/src/entities/blobs/mia.c @@ -115,6 +115,7 @@ static void touch(Entity *other) setGameplayMessage(MSG_OBJECTIVE, _("Rescued %s"), m->name); m->isMissionTarget = 0; m->flags |= EF_ALWAYS_PROCESS; + m->plane = PLANE_FOREGROUND; playSound(SND_MIA, m->uniqueId % MAX_SND_CHANNELS); } }