Dieser Commit ist enthalten in:
Ursprung
4dedf82458
Commit
74b219994b
@ -23,7 +23,7 @@ public class Elo {
|
|||||||
private Elo(){}
|
private Elo(){}
|
||||||
|
|
||||||
public static int getElo(int userId, String gameMode){
|
public static int getElo(int userId, String gameMode){
|
||||||
return Provider.impl.getCurrentElo(userId, gameMode);
|
return Provider.impl.getElo(userId, gameMode);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void setElo(int userId, String gameMode, int elo){
|
public static void setElo(int userId, String gameMode, int elo){
|
||||||
|
@ -55,7 +55,7 @@ public interface Provider {
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
default int getCurrentElo(int userId, String gameMode) {
|
default int getElo(int userId, String gameMode) {
|
||||||
return getElo(getCurrentSeason(), userId, gameMode);
|
return getElo(getCurrentSeason(), userId, gameMode);
|
||||||
}
|
}
|
||||||
int getElo(int season, int userId, String gameMode);
|
int getElo(int season, int userId, String gameMode);
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren