[DIVA] Clear status should count lower rank

pull/1/head
samnyan 2020-02-03 00:57:54 +08:00
parent 0e9c88c41d
commit 517693bb57
1 changed files with 6 additions and 0 deletions

View File

@ -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;
} }
} }