summaryrefslogtreecommitdiff
path: root/galax.c
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2020-05-23 20:56:25 +0000
committerIan C <ianc@noddybox.co.uk>2020-05-23 20:56:25 +0000
commitfd943c84fba654e73f916e11500c87217ad0ffcc (patch)
tree0827bf5771224e4e29db0b9f87d44af82274f861 /galax.c
parent192b5413022f97f89261b0e0386e90e90c13e4c8 (diff)
Made enemy bullets a bit more forgiving
Diffstat (limited to 'galax.c')
-rw-r--r--galax.c4
1 files 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;
}