summaryrefslogtreecommitdiff
path: root/game/states/play.js
diff options
context:
space:
mode:
Diffstat (limited to 'game/states/play.js')
-rw-r--r--game/states/play.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/game/states/play.js b/game/states/play.js
index d872c71..cabe9cf 100644
--- a/game/states/play.js
+++ b/game/states/play.js
@@ -183,11 +183,11 @@ Play.prototype = {
this.pills.add(new BonusPill(this.game, x, y));
break;
case 'A':
- this.playerA = new Player(this.game, x, y, 'player-a', 0, 'omSound');
+ this.playerA = new Player(this.game, x, y, 'player-a', 'omSound');
this.players.add(this.playerA);
break;
case 'B':
- this.playerB = new Player(this.game, x, y, 'player-b', 0, 'nomSound');
+ this.playerB = new Player(this.game, x, y, 'player-b', 'nomSound');
this.players.add(this.playerB);
break;
case '|':