SteamWar/SpigotCore
Archiviert
13
0

Add ranked rework #181

Zusammengeführt
Lixfel hat 6 Commits von Ranked nach master 2022-03-10 12:07:07 +01:00 zusammengeführt
2 geänderte Dateien mit 0 neuen und 40 gelöschten Zeilen
Nur Änderungen aus Commit 4dedf82458 werden angezeigt - Alle Commits anzeigen

Datei anzeigen

@ -26,10 +26,6 @@ public class Elo {
return Provider.impl.getCurrentElo(userId, gameMode);
}
public static int getElo(int season, int userId, String gameMode){
return Provider.impl.getElo(season, userId, gameMode);
}
public static void setElo(int userId, String gameMode, int elo){
Provider.impl.setElo(userId, gameMode, elo);
}

Datei anzeigen

@ -1,36 +0,0 @@
/*
* This file is a part of the SteamWar software.
*
* Copyright (C) 2020 SteamWar.de-Serverteam
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package de.steamwar.sql;
public class Season {
private Season() {}
public static int getSeason() {
return Provider.impl.getCurrentSeason();
}
public static String convertSeasonToString(int season){
return Provider.impl.convertSeasonNumberToString(season);
}
public static int convertSeasonToNumber(String season){
return Provider.impl.convertSeasonStringToNumber(season);
}
}