From f55265a5bbd8307ff902e8e3fe634df4b9a0257c Mon Sep 17 00:00:00 2001 From: Adhesion Date: Sun, 9 Oct 2016 23:00:56 -0400 Subject: [PATCH] Bomb powerup sound --- src/Bomb.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Bomb.js b/src/Bomb.js index eacdfa7..af63c6d 100644 --- a/src/Bomb.js +++ b/src/Bomb.js @@ -21,6 +21,7 @@ GBGJ.Bomb = me.Entity.extend({ if(this.stillActive && other.body.collisionType == me.collision.types.PLAYER_OBJECT){ this.stillActive = false; other.addBomb(); + me.audio.play("powerup"); me.game.world.removeChild(this); } return false;