Slow missile down a bit more, to avoid orbitting static targets.

This commit is contained in:
Steve 2016-05-02 12:53:33 +01:00
parent b20a377edd
commit 4abec11dfd
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}
}