diff options
| author | RibbonCable <ambiguousmachine@gmail.com> | 2022-02-18 15:57:14 -0800 |
|---|---|---|
| committer | RibbonCable <ambiguousmachine@gmail.com> | 2022-02-18 15:57:14 -0800 |
| commit | 4399396b397ce36c2c35eae5eb870627a36cf555 (patch) | |
| tree | 42f399a6d413d3d841e0dc7f101b8d52b3ffe6ea /enemies.lua | |
| parent | ef48284d5dbda449ad74d1da2bfe9bf02557b785 (diff) | |
Small edit to pickups in exchange for tokens.
Diffstat (limited to 'enemies.lua')
| -rw-r--r-- | enemies.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/enemies.lua b/enemies.lua index 4636f7f..06a0c0b 100644 --- a/enemies.lua +++ b/enemies.lua @@ -29,7 +29,7 @@ function enemydie(enemy, sound, soundchannel, points, isboss) addpickup(enemy.x+rnd(enemy.w), enemy.y+rnd(enemy.h), "health") end if isboss then - addpickup(enemy.x+rnd(32), enemy.y+rnd(32), "powerup") + addpickup(enemy.x+rnd(32), enemy.y+rnd(32)) addpickup(enemy.x+rnd(32), enemy.y+rnd(32), "health") end if shake < 3 then |
