From 975c52b251905d4f0e76f0db09780f00f7bb6590 Mon Sep 17 00:00:00 2001 From: 1029chris <1029chris@gmail.com> Date: Wed, 9 Feb 2022 21:15:42 -0800 Subject: big circle shooter more likely to drop pickup --- enemies.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'enemies.lua') diff --git a/enemies.lua b/enemies.lua index 7864f1a..3283ec3 100644 --- a/enemies.lua +++ b/enemies.lua @@ -230,7 +230,7 @@ function addballshooter(x, y, health, speed) for i = 1, 24, 1 do addcircle(enemy.x+rnd(8), enemy.y+rnd(8), rnd(4)-2, -rnd(2)-1, 1, 2, rnd({3, 11, 9}), -0.1) end - if rnd(100) > 80 then + if rnd(100) > 70 then addpickup(enemy.x, enemy.y) end if shake < 3 then -- cgit