summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 cf4bf62..9c5a91c 100644
--- a/game/states/play.js
+++ b/game/states/play.js
@@ -228,14 +228,14 @@ Play.prototype = {
},
setupPlayerControls: function() {
- this.playerAControls = {
+ this.playerBControls = {
up: Phaser.Keyboard.W,
left: Phaser.Keyboard.A,
down: Phaser.Keyboard.S,
right: Phaser.Keyboard.D,
poison: Phaser.Keyboard.Q
};
- this.playerBControls = {
+ this.playerAControls = {
up: Phaser.Keyboard.UP,
left: Phaser.Keyboard.LEFT,
down: Phaser.Keyboard.DOWN,