Skip to content
Snippets Groups Projects
Commit 9b435b5f authored by Tim Repke's avatar Tim Repke
Browse files

Merge branch 'master' of bitbucket.org:fsfahrttoolteam/registration-system

parents 483b71ca 1b09f86b
No related branches found
No related tags found
No related merge requests found
......@@ -242,4 +242,4 @@ Char.prototype.setMoveTarget = function(x, y, onArrival, onArrivalParams) {
Char.prototype.stopMovement = function() {
this.moveTarget = null;
};
\ No newline at end of file
};
......@@ -194,6 +194,7 @@ Story.actions = {
condition: Environment.progress.inventory_money,
action: function () {
Environment.progress.inventory_ruestung = true;
if (Game.char) Game.char.animate(); // apply new visuals
}
}, {
message: 'Was? Spende? Ich hab\' nichts!',
......@@ -1246,4 +1247,4 @@ Story.dialogueHelper = function (dialogue, context, done) {
}
}, speed.talk);
}
};
\ No newline at end of file
};
......@@ -241,9 +241,8 @@ class SignupMethods {
// check captcha
elseif($check == "captcha"){
if(isset($_SESSION['captcha']) && strtolower($tmp) == strtolower($_SESSION['captcha'])){
unset($_SESSION['captcha']);
} else{
unset($_SESSION['captcha']);
if(!(isset($_SESSION['captcha']) && strtolower($tmp) == strtolower($_SESSION['captcha']))) {
array_push($errarr, $errmess);
$datarr[$index] = "";
}
......@@ -280,4 +279,4 @@ class SignupMethods {
}
}
}
}
\ No newline at end of file
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment