修复威望升级消耗计算错误
This commit is contained in:
xichaoyin 2024-01-03 16:27:59 +08:00
parent c65aea9ae2
commit 3c50fdbd01

View File

@ -25,7 +25,7 @@ export default async function (call: ApiCall<ReqUpLv, ResUpLv>) {
let config;
for (let id of ids) {
config = G.gc.renown_level[id];
if (min_lv < config.renownlevel) {
if (min_lv < config.maxlevel) {
break;
}
}