feature/MAPG-235-basic-challenge-mode #48
@ -388,14 +388,14 @@ class GameFlowController
|
|||||||
|
|
||||||
// save user relevant state of challenge
|
// save user relevant state of challenge
|
||||||
$userInChallenge->setCurrentRound($nextRound);
|
$userInChallenge->setCurrentRound($nextRound);
|
||||||
if ($this->request->post('timeLeft')) {
|
$timeLeft = $this->request->post('timeLeft');
|
||||||
$userInChallenge->setTimeLeft(intval($this->request->post('timeLeft')));
|
if (isset($timeLeft)) {
|
||||||
|
$userInChallenge->setTimeLeft(intval($timeLeft));
|
||||||
}
|
}
|
||||||
$this->pdm->saveToDb($userInChallenge);
|
$this->pdm->saveToDb($userInChallenge);
|
||||||
|
|
||||||
|
if ($challenge->getTimeLimitType() === 'game' && isset($timeLeft)) {
|
||||||
if ($challenge->getTimeLimitType() === 'game' && $this->request->post('timeLeft')) {
|
$timeLimit = max(10, intval($timeLeft));
|
||||||
$timeLimit = max(10, intval($this->request->post('timeLeft')));
|
|
||||||
$response['restrictions']['timeLimit'] = $timeLimit * 1000;
|
$response['restrictions']['timeLimit'] = $timeLimit * 1000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user