forked from SteamWar/SteamWar
52 lines
1.9 KiB
Java
52 lines
1.9 KiB
Java
/*
|
|
* This file is a part of the SteamWar software.
|
|
*
|
|
* Copyright (C) 2025 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.lobby.jumpandrun;
|
|
|
|
import de.steamwar.command.SWCommand;
|
|
import de.steamwar.linkage.Linked;
|
|
import de.steamwar.lobby.LobbySystem;
|
|
import de.steamwar.sql.UserConfig;
|
|
import org.bukkit.entity.Player;
|
|
|
|
import java.text.SimpleDateFormat;
|
|
import java.util.Date;
|
|
import java.util.Locale;
|
|
|
|
@Linked
|
|
public class JumpAndRunCommand extends SWCommand {
|
|
|
|
public JumpAndRunCommand() {
|
|
super("jumpandrun");
|
|
}
|
|
|
|
@Register
|
|
public void genericCommand(Player player, String... args) {
|
|
String time = UserConfig.getConfig(player.getUniqueId(), JumpAndRun.JUMP_AND_RUN_CONFIG);
|
|
if (time == null) {
|
|
LobbySystem.getMessage().sendPrefixless("JUMP_AND_RUN_PERSONAL_BEST_NO_TIME", player);
|
|
return;
|
|
}
|
|
long timeLong = Long.parseLong(time);
|
|
SimpleDateFormat format = new SimpleDateFormat(LobbySystem.getMessage().parse("JUMP_AND_RUN_TIME", player), Locale.ROOT);
|
|
String parsed = format.format(new Date(timeLong));
|
|
LobbySystem.getMessage().sendPrefixless("JUMP_AND_RUN_PERSONAL_BEST_TIME", player, parsed);
|
|
}
|
|
}
|