SteamWar/SpigotCore
Archiviert
13
0

Fix ELO SQL
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Dieser Commit ist enthalten in:
Lixfel 2021-11-09 10:29:12 +01:00
Ursprung a7a7d48d92
Commit 84eba0a156

Datei anzeigen

@ -28,7 +28,7 @@ public class Elo {
public static int getElo(int userId, String gameMode){
return get.select(rs -> {
if(rs.next())
return rs.getInt("id");
return rs.getInt("Elo");
return 1000;
}, userId, gameMode);
}