fix: 명성 최대 레벨 지정이 없었음

This commit is contained in:
2023-04-29 23:18:55 +09:00
parent 91b7934ee3
commit 9b95163f24
2 changed files with 5 additions and 0 deletions
+2
View File
@@ -542,6 +542,8 @@ function getExpLevel($experience) {
$level = Util::toInt(sqrt($experience/10));
}
$level = Util::clamp($level, 0, GameConst::$maxLevel);
return $level;
}