Skip to content

Commit

Permalink
Bomb now explodes faster
Browse files Browse the repository at this point in the history
  • Loading branch information
antionio committed Nov 30, 2013
1 parent 09f8bdc commit 7d195aa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public void render(float delta, SpriteBatch batch) {
public void update(float fixedStep) {
// super.update(fixedStep);
stateTime += fixedStep;
if (stateTime > 3f && !isDead() && !isDying()) {
if (stateTime > 2f && !isDead() && !isDying()) {
aliveTick = ALIVE_TIME_MAX;
explosionRadius.setPosition(bounds.x - 1.5f, bounds.y - 1.5f);
level.addParticleEffect(Assets.PARTICLE_EXPLOSION, bounds.x + 0.5f,
Expand Down

0 comments on commit 7d195aa

Please sign in to comment.