From 6ba888436b5174d6fdf7674466f550d1c5837964 Mon Sep 17 00:00:00 2001 From: Steve Date: Sat, 3 Mar 2018 16:04:18 +0000 Subject: [PATCH] Ensure Bob faces correct way at beginning of mission. --- src/entities/blobs/bob.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/entities/blobs/bob.c b/src/entities/blobs/bob.c index bfb4d6e..3f965a5 100644 --- a/src/entities/blobs/bob.c +++ b/src/entities/blobs/bob.c @@ -99,7 +99,7 @@ Entity *initBob(void) checkpointTimer = 0; - oldFacing = 0; + oldFacing = b->facing; return (Entity*)b; }