forked from Cookies_Github_mirror/AquaDX
[F] Fix apis
This commit is contained in:
@@ -11,6 +11,7 @@ import org.jetbrains.annotations.NotNull;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
import java.time.format.DateTimeFormatter;
|
||||
|
||||
/**
|
||||
* @author samnyan (privateamusement@protonmail.com)
|
||||
@@ -171,4 +172,9 @@ public class UserPlaylog implements Serializable, IGenericGamePlaylog {
|
||||
public String getDate() {
|
||||
return playDate.toString();
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getBeforeRating() {
|
||||
return playerRating; // TODO: Get before rating
|
||||
}
|
||||
}
|
||||
|
||||
@@ -180,4 +180,9 @@ public class UserPlaylog implements Serializable, IGenericGamePlaylog {
|
||||
public int getAfterRating() {
|
||||
return playerRating;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getBeforeRating() {
|
||||
return playerRating; // TODO: Get before rating
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user