forked from Cookies_Github_mirror/AquaDX
[F] Fix full combo count
This commit is contained in:
@@ -157,11 +157,6 @@ public class UserPlaylog implements Serializable, IGenericGamePlaylog {
|
||||
return score;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getTotalCombo() {
|
||||
return maxCombo;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getAfterRating() {
|
||||
return playerRating;
|
||||
|
||||
@@ -128,8 +128,10 @@ public class UserPlaylog implements Serializable, IGenericGamePlaylog {
|
||||
|
||||
private int scoreRank;
|
||||
|
||||
// Maximum continuous combo that the player achieved in this play.
|
||||
private int maxCombo;
|
||||
|
||||
// Maximum achievable combo in the song.
|
||||
private int totalCombo;
|
||||
|
||||
private int maxSync;
|
||||
@@ -268,4 +270,9 @@ public class UserPlaylog implements Serializable, IGenericGamePlaylog {
|
||||
public Object getDate() {
|
||||
return playDate;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isFullCombo() {
|
||||
return maxCombo == totalCombo;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -171,11 +171,6 @@ public class UserPlaylog implements Serializable, IGenericGamePlaylog {
|
||||
return techScore;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getTotalCombo() {
|
||||
return maxCombo;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getAfterRating() {
|
||||
return playerRating;
|
||||
|
||||
Reference in New Issue
Block a user