From 600032a41b928ae6e87d106f9a886e0395f3e3cb Mon Sep 17 00:00:00 2001 From: Steve Date: Sat, 24 Feb 2018 15:59:46 +0000 Subject: [PATCH] Only mark Bob as gone if this isn't a boss mission. --- src/world/world.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/world/world.c b/src/world/world.c index 6cde13e..b8920e9 100644 --- a/src/world/world.c +++ b/src/world/world.c @@ -111,11 +111,11 @@ void initWorld(void) } else { + world.bob->flags |= EF_GONE; + playMusic(1); } - world.bob->flags |= EF_GONE; - game.stats[STAT_MISSIONS_PLAYED]++; app.delegate.logic = logic;