diff options
author | Patrick Davison <snapwilliam@gmail.com> | 2012-12-02 13:27:12 -0800 |
---|---|---|
committer | Patrick Davison <snapwilliam@gmail.com> | 2012-12-02 13:27:12 -0800 |
commit | b2bffd5eb17212b60b62ab86a8559213ed3820af (patch) | |
tree | 82a83c206ff6fa2f9f40eccde47064af1c6d9115 /includes/datas.php | |
parent | 1399d45c68e7d14fc1f3e8f2b5451669cce4ffa4 (diff) | |
download | pathery-b2bffd5eb17212b60b62ab86a8559213ed3820af.tar.xz |
Image updates and mapspecs fixes.
Fixed a bug where every checkpoint was called "checkpoint A"
Fixed a bug where requesting solution during a path would break it.
Fixed a bug regarding tutorial success.
Diffstat (limited to 'includes/datas.php')
-rw-r--r-- | includes/datas.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/datas.php b/includes/datas.php index f1f4377..fa04300 100644 --- a/includes/datas.php +++ b/includes/datas.php @@ -304,9 +304,9 @@ function applyCareerMazesAchievements($userID) { */ function getCompletedChallenges($userID, $mapID, $solution, $moves, $paths) { //mapID 5 is the tutorial, and is treated specially - $firephp = FirePHP::getInstance(true); - $firephp->log("In challenges"); - if($mapID < 10) { + //$firephp = FirePHP::getInstance(true); + //$firephp->log("In challenges"); + if($mapID <= 10) { if ($mapID == 5 && $moves == 75) { onCompletedTutorial($userID); } |