mirror of
https://github.com/MewoLab/AquaDX.git
synced 2026-02-10 15:17:26 +08:00
[DIVA] fix stage_result placeholder to the correct length, level up animation is now working
This commit is contained in:
@@ -117,13 +117,13 @@ public class StageResultHandler extends BaseHandler {
|
|||||||
request.getCr_cid(),
|
request.getCr_cid(),
|
||||||
request.getCr_tv(),
|
request.getCr_tv(),
|
||||||
cnp_sp,
|
cnp_sp,
|
||||||
"xxx",
|
"xxx,xxx,xxx,xxx,xxx",
|
||||||
"-1,-1,-1,-1,-1",
|
"-1,-1,-1,-1,-1",
|
||||||
"xxx",
|
"xxx,xxx,xxx,xxx,xxx",
|
||||||
"xxx",
|
"xxx,xxx,xxx,xxx,xxx",
|
||||||
"xxx",
|
"xxx,xxx,xxx,xxx,xxx",
|
||||||
"xxx",
|
"xxx,xxx,xxx,xxx,xxx",
|
||||||
"xxx",
|
"xxx,xxx,xxx,xxx,xxx",
|
||||||
0,
|
0,
|
||||||
LocalDateTime.now(),
|
LocalDateTime.now(),
|
||||||
-1,
|
-1,
|
||||||
|
|||||||
@@ -32,6 +32,6 @@ public class DivaCalculator {
|
|||||||
int level = totalAttain / 13979;
|
int level = totalAttain / 13979;
|
||||||
int exp = Math.round((totalAttain % 13979) / 13979.0f * 100.0f);
|
int exp = Math.round((totalAttain % 13979) / 13979.0f * 100.0f);
|
||||||
|
|
||||||
return new LevelInfo(level, exp);
|
return new LevelInfo(level + 1, exp);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user