From: Guus Sliepen Date: Tue, 21 Dec 2010 14:48:45 +0000 (+0100) Subject: Set vertical speed of target to zero when Aquablob recharges. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d476b7b4f05400174be39010a392da370e200440;p=quix0rs-blobwars.git Set vertical speed of target to zero when Aquablob recharges. Spotted by Theodore Lee. --- 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) {