From a33751555c4724ad5ad2a185a2469a75a7262c69 Mon Sep 17 00:00:00 2001 From: Juraj Michalek Date: Sun, 27 Dec 2015 23:26:26 +0100 Subject: [PATCH] level 3 fix incorrect direction of redirector --- js/app/level-03.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/app/level-03.js b/js/app/level-03.js index d5aad69..cb79fdb 100644 --- a/js/app/level-03.js +++ b/js/app/level-03.js @@ -2,7 +2,7 @@ var level3 = {}; level3.create = function(context) { // Create redirector objects addRedirector(context, 6, 3, 1, 0, 0); - addRedirector(context, 4, 3, 0, 1, 6); + addRedirector(context, 4, 3, 0, -1, 3); // Define player coordinates context.character.x = 2*64 - 8;