From fa42c92308d609d727a46a58ed57c9c711597c35 Mon Sep 17 00:00:00 2001 From: Tim Repke <timmothey@gmx.de> Date: Mon, 21 Sep 2015 03:04:45 +0200 Subject: [PATCH] removed debugging progress state --- registration-system/view/signups/game1/js/environment.js | 4 ++-- registration-system/view/signups/game1/js/story.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/registration-system/view/signups/game1/js/environment.js b/registration-system/view/signups/game1/js/environment.js index 867ba26..637007e 100644 --- a/registration-system/view/signups/game1/js/environment.js +++ b/registration-system/view/signups/game1/js/environment.js @@ -8,8 +8,8 @@ Environment.progress = { // MAP RELATED things // fs related - fs_firstApproach: !false, - fs_georgeScreamed: !false, + fs_firstApproach: false, + fs_georgeScreamed: false, fs_filledBoard: false, // landing map related diff --git a/registration-system/view/signups/game1/js/story.js b/registration-system/view/signups/game1/js/story.js index 4e3d34c..26ae606 100644 --- a/registration-system/view/signups/game1/js/story.js +++ b/registration-system/view/signups/game1/js/story.js @@ -12,7 +12,7 @@ Story.actions = { welcome_message: false, // welcome message spoken studityp: false, // asked for studityp failed: false, // was approached before, but had no money - successful: !false // all done with this action (equivalent to Environment.progress.fs_firstApproach) + successful: false // all done with this action (equivalent to Environment.progress.fs_firstApproach) }, possible: function () { return (!Story.actions.fs_firstApproach.state.successful && !Story.actions.fs_firstApproach.state.failed) || -- GitLab