From ab94dee93f61684a526a79a83a1a86fc752709f5 Mon Sep 17 00:00:00 2001 From: ysandler Date: Wed, 23 Nov 2016 12:28:31 -0600 Subject: [PATCH] Fixed Game over redirect --- assets/js/state.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/js/state.js b/assets/js/state.js index b8baa69..ac8fc18 100644 --- a/assets/js/state.js +++ b/assets/js/state.js @@ -17,11 +17,11 @@ function gameLoop() { function play() { if(terminalsHacked === 4){ - window.location="https://github.com/joshuashoemaker/game-off-2016/gameover.html" + window.location="https://joshuashoemaker.github.io/game-off-2016/gameover.html" } if(!player.alive()){ setTimeout(function(){ - window.location="https://github.com/joshuashoemaker/game-off-2016/gameover.html" + window.location="https://joshuashoemaker.github.io/game-off-2016/gameover.html" }, 1500) } } \ No newline at end of file