Ограничитель уровня теперь выбрасывает ошибку не останавливая скрипт.

This commit is contained in:
lopar 2020-06-24 08:30:01 +03:00
parent 7be1319845
commit 58da58d010

View File

@ -178,14 +178,21 @@ function level_up($uid)
}
}
######## FIXME ВЕЧНЫЕ 12-ТКИ!!!!!!!!!!!!
/*
* Проверка делающая левелап и ограничитель максимального уровня.
*/
if (isset($_SESSION['uid'])) {
$in_user = db::c()->query('SELECT `id`, `exp`, `nextup`, `level` FROM `users` WHERE `id` = ?i', $_SESSION['uid'])->fetch_assoc();
try {
$userInfo = db::c()->query('SELECT `id`, `exp`, `nextup`, `level` FROM `users` WHERE `id` = ?i', $_SESSION['uid'])->fetch_assoc();
if ($userInfo && ($userInfo['exp'] >= $userInfo['nextup']) && $userInfo['level'] < 50) {
level_up($in_user['id']);
}
} catch (\Krugozor\Database\Mysql\Exception $e) {
echo $e->getTraceAsString();
}
}
if (isset($in_user['id']) && ($in_user['exp'] >= $in_user['nextup']) && $in_user['level'] < 13) {
level_up($in_user['id']);
}
########
function savecavedata($cavedata, $caveleader, $floor)