mirror of https://github.com/hykilpikonna/AquaDX
[DIVA] Clear status should count lower rank
parent
0e9c88c41d
commit
517693bb57
|
@ -19,14 +19,20 @@ public class ClearSet {
|
|||
}
|
||||
|
||||
public void addGreat() {
|
||||
this.clear += 1;
|
||||
this.great += 1;
|
||||
}
|
||||
|
||||
public void addExcellent() {
|
||||
this.clear += 1;
|
||||
this.great += 1;
|
||||
this.excellent += 1;
|
||||
}
|
||||
|
||||
public void addPerfect() {
|
||||
this.clear += 1;
|
||||
this.great += 1;
|
||||
this.excellent += 1;
|
||||
this.perfect += 1;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue