7b3901c003
Jedi is skid
33 lines
1.1 KiB
Java
33 lines
1.1 KiB
Java
package server.wenjapvp.hcf.command;
|
|
|
|
import org.apache.commons.lang3.time.FastDateFormat;
|
|
import org.bukkit.ChatColor;
|
|
import org.bukkit.command.Command;
|
|
import org.bukkit.command.CommandExecutor;
|
|
import org.bukkit.command.CommandSender;
|
|
import org.bukkit.command.TabCompleter;
|
|
|
|
import server.wenjapvp.hcf.config.ConfigurationService;
|
|
|
|
import java.util.Collections;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* Command used to check the current time for the server.
|
|
*/
|
|
public class ServerTimeCommand implements CommandExecutor, TabCompleter {
|
|
|
|
private static final FastDateFormat FORMAT = FastDateFormat.getInstance("E MMM dd h:mm:ssa z yyyy", ConfigurationService.SERVER_TIME_ZONE);
|
|
|
|
@Override
|
|
public boolean onCommand(CommandSender sender, Command command, String label, String[] args) {
|
|
sender.sendMessage(ChatColor.GOLD + "The server time is " + ChatColor.YELLOW + FORMAT.format(System.currentTimeMillis()) + ChatColor.RED + '.');
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public List<String> onTabComplete(CommandSender sender, Command command, String label, String[] args) {
|
|
return Collections.emptyList();
|
|
}
|
|
}
|