From fd943c84fba654e73f916e11500c87217ad0ffcc Mon Sep 17 00:00:00 2001 From: Ian C Date: Sat, 23 May 2020 20:56:25 +0000 Subject: Made enemy bullets a bit more forgiving --- galax.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/galax.c b/galax.c index 7433943..e9596ef 100644 --- a/galax.c +++ b/galax.c @@ -1789,10 +1789,10 @@ static void CheckAlienShot(Alien *a) switch (levdata[levelndx].shot_type) { case VISHOT: - a->shot.yi=4+RND(4); + a->shot.yi=1+RND(2); break; default: - a->shot.yi=3; + a->shot.yi=1; break; } -- cgit v1.2.3