mirror of
https://github.com/MewoLab/AquaDX.git
synced 2026-02-11 15:37:27 +08:00
[DIVA] Clear status should count lower rank
This commit is contained in:
@@ -19,14 +19,20 @@ public class ClearSet {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void addGreat() {
|
public void addGreat() {
|
||||||
|
this.clear += 1;
|
||||||
this.great += 1;
|
this.great += 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void addExcellent() {
|
public void addExcellent() {
|
||||||
|
this.clear += 1;
|
||||||
|
this.great += 1;
|
||||||
this.excellent += 1;
|
this.excellent += 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void addPerfect() {
|
public void addPerfect() {
|
||||||
|
this.clear += 1;
|
||||||
|
this.great += 1;
|
||||||
|
this.excellent += 1;
|
||||||
this.perfect += 1;
|
this.perfect += 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user