From d476b7b4f05400174be39010a392da370e200440 Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Tue, 21 Dec 2010 15:48:45 +0100 Subject: [PATCH] Set vertical speed of target to zero when Aquablob recharges. Spotted by Theodore Lee. --- src/aquaBoss.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aquaBoss.cpp b/src/aquaBoss.cpp index 2e50744..be26863 100644 --- a/src/aquaBoss.cpp +++ b/src/aquaBoss.cpp @@ -73,7 +73,7 @@ void aquaBossRecharge() { if (enemy->health > -100) { - enemy->dx = enemy->dx = 0; + enemy->dx = enemy->dy = 0; enemy->health = -1; if (enemy->health % 10) { -- 2.39.5