mirror of https://github.com/hykilpikonna/AquaDX
[DIVA] fix stage_result placeholder to the correct length, level up animation is now working
parent
f95cf86b38
commit
38120a3aa9
|
@ -117,13 +117,13 @@ public class StageResultHandler extends BaseHandler {
|
|||
request.getCr_cid(),
|
||||
request.getCr_tv(),
|
||||
cnp_sp,
|
||||
"xxx",
|
||||
"xxx,xxx,xxx,xxx,xxx",
|
||||
"-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,
|
||||
LocalDateTime.now(),
|
||||
-1,
|
||||
|
|
|
@ -32,6 +32,6 @@ public class DivaCalculator {
|
|||
int level = totalAttain / 13979;
|
||||
int exp = Math.round((totalAttain % 13979) / 13979.0f * 100.0f);
|
||||
|
||||
return new LevelInfo(level, exp);
|
||||
return new LevelInfo(level + 1, exp);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue