summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--game/states/play.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/game/states/play.js b/game/states/play.js
index 9a0748c..1c4a926 100644
--- a/game/states/play.js
+++ b/game/states/play.js
@@ -44,7 +44,7 @@ Play.prototype = {
this.game.physics.startSystem(Phaser.Physics.ARCADE);
this.playerAScoreText = this.game.add.bitmapText(-0.1, -0.4, 'spaced-scorefont-a','0',2);
- this.playerBScoreText = this.game.add.bitmapText(this.world.width/this.world.scale.x - 3.1, -0.4, 'spaced-scorefont-b','0',2);
+ this.playerBScoreText = this.game.add.bitmapText(this.world.width/this.world.scale.x - 4.5, -0.4, 'spaced-scorefont-b','0',2);
this.gameWon = false;
},