From 71b8652fe5a17423909e13182cdab205a67dc2e8 Mon Sep 17 00:00:00 2001 From: Chris Bradley <1029chris@gmail.com> Date: Sun, 20 Feb 2022 13:55:11 -0800 Subject: teeny itty bitty missle boss nerf --- enemies.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/enemies.lua b/enemies.lua index 3d5a509..4ee6041 100644 --- a/enemies.lua +++ b/enemies.lua @@ -546,7 +546,7 @@ function addmissileboss(x, y) --boss that shoots missiles!!! enemy.targety = rnd(96) end if enemy.shootcooldown < 0 then - enemy.shootcooldown = 0.6 + rnd(0.5) + enemy.shootcooldown = 0.6 + rnd(0.6) if enemy.x < canshootatx and players[targetplayer] ~= nil then local offsetmissleboss = 2 if currentwavetime%2 > 1 then offsetmissleboss = 30 end -- cgit