From 4abec11dfd8c386bf29647532958d6b5432ded08 Mon Sep 17 00:00:00 2001 From: Steve Date: Mon, 2 May 2016 12:53:33 +0100 Subject: [PATCH] Slow missile down a bit more, to avoid orbitting static targets. --- src/battle/bullets.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/battle/bullets.c b/src/battle/bullets.c index e324b85..76ae769 100644 --- a/src/battle/bullets.c +++ b/src/battle/bullets.c @@ -282,8 +282,8 @@ static void faceTarget(Bullet *b) b->angle = mod(b->angle, 360); - b->dx *= 0.75; - b->dy *= 0.75; + b->dx *= 0.5; + b->dy *= 0.5; } }