From 922439ec311b5319887a41f721cd3f914c737ee1 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 24 Jan 2019 14:51:52 +0100 Subject: [PATCH] Free Fall treasures move in shmup --- shmup.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/shmup.cpp b/shmup.cpp index f339e76f..181722ce 100644 --- a/shmup.cpp +++ b/shmup.cpp @@ -3164,6 +3164,7 @@ void turn(int delta) { heat::processfires(); if(havewhat&HF_WHIRLPOOL) whirlpool::move(); if(havewhat&HF_WHIRLWIND) whirlwind::move(); + if(havewhat & HF_WESTWALL) westwall::move(); buildRosemap(); if(havewhat&HF_RIVER) prairie::move(); }