Let powerups stay twice on the level as long

This commit is contained in:
Erkki Seppälä 2014-10-21 21:30:57 +03:00
parent 032f1d3113
commit 1086eca767
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@ BigBallPowerUp = Class{
__includes = PowerUp,
init = function(self, x, y, level)
PowerUp.init(self, x, y, level, 10, 16)
PowerUp.init(self, x, y, level, 20, 16)
self.mode = BigBallMode()
end;

View file

@ -9,7 +9,7 @@ ChaingunPowerUp = Class{
__includes = PowerUp,
init = function(self, x, y, level)
PowerUp.init(self, x, y, level, 10, 16)
PowerUp.init(self, x, y, level, 20, 16)
self.mode = ChaingunMode()
end;