mirror of
https://github.com/Melledy/LunarCore.git
synced 2025-12-15 06:45:04 +01:00
Fix MoC cycle counter
This commit is contained in:
@@ -68,7 +68,6 @@ public class ChallengeInstance {
|
|||||||
this.currentExtraLineup = type.getNumber();
|
this.currentExtraLineup = type.getNumber();
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressWarnings("unused")
|
|
||||||
private int getRoundsElapsed() {
|
private int getRoundsElapsed() {
|
||||||
return getExcel().getChallengeCountDown() - this.roundsLeft;
|
return getExcel().getChallengeCountDown() - this.roundsLeft;
|
||||||
}
|
}
|
||||||
@@ -188,7 +187,7 @@ public class ChallengeInstance {
|
|||||||
var proto = ChallengeInfo.newInstance()
|
var proto = ChallengeInfo.newInstance()
|
||||||
.setChallengeId(this.getExcel().getId())
|
.setChallengeId(this.getExcel().getId())
|
||||||
.setStatusValue(this.getStatus())
|
.setStatusValue(this.getStatus())
|
||||||
//.setRoundCount(this.getRoundsElapsed())
|
.setRoundCount(this.getRoundsElapsed())
|
||||||
.setExtraLineupTypeValue(this.getCurrentExtraLineup());
|
.setExtraLineupTypeValue(this.getCurrentExtraLineup());
|
||||||
|
|
||||||
return proto;
|
return proto;
|
||||||
|
|||||||
Reference in New Issue
Block a user