From b127c30374c2dcc283e37fa3038b8de2316cad73 Mon Sep 17 00:00:00 2001 From: Justin Worthe Date: Mon, 1 Sep 2014 07:55:06 +0200 Subject: Added invisible walls to prevent stupid moves after respawn --- game/states/play.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'game/states/play.js') diff --git a/game/states/play.js b/game/states/play.js index 14d8335..617176d 100644 --- a/game/states/play.js +++ b/game/states/play.js @@ -189,7 +189,10 @@ Play.prototype = { this.playerB = new Player(this.game, x, y, 'player-b', 0, 'nomSound'); this.players.add(this.playerB); break; - } + case '|': + this.addToMap(x, y); + break; + } } } -- cgit v1.2.3