2022-01-04 03:04:39 +00:00
|
|
|
package dev.plex.command.impl;
|
|
|
|
|
|
|
|
import dev.plex.command.PlexCommand;
|
|
|
|
import dev.plex.command.annotation.CommandParameters;
|
|
|
|
import dev.plex.command.annotation.CommandPermissions;
|
|
|
|
import dev.plex.command.source.RequiredCommandSource;
|
|
|
|
import dev.plex.rank.enums.Rank;
|
2022-01-27 09:00:50 +00:00
|
|
|
import net.kyori.adventure.text.Component;
|
|
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
import org.bukkit.entity.Player;
|
2022-02-04 04:49:05 +00:00
|
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
import org.jetbrains.annotations.Nullable;
|
2022-01-04 03:04:39 +00:00
|
|
|
|
|
|
|
// TODO: See ranks of other players
|
|
|
|
|
2022-01-30 01:31:10 +00:00
|
|
|
@CommandPermissions(level = Rank.OP, permission = "plex.rank", source = RequiredCommandSource.IN_GAME)
|
2022-01-27 09:00:50 +00:00
|
|
|
@CommandParameters(name = "rank", description = "Displays your rank")
|
2022-01-29 22:35:48 +00:00
|
|
|
public class RankCMD extends PlexCommand
|
|
|
|
{
|
2022-01-04 03:04:39 +00:00
|
|
|
@Override
|
2022-02-04 04:49:05 +00:00
|
|
|
protected Component execute(@NotNull CommandSender sender, @Nullable Player playerSender, String[] args)
|
2022-01-29 22:35:48 +00:00
|
|
|
{
|
2022-02-05 20:43:49 +00:00
|
|
|
if (!(playerSender == null))
|
|
|
|
{
|
|
|
|
Rank rank = getPlexPlayer(playerSender).getRankFromString();
|
2022-02-22 04:51:05 +00:00
|
|
|
return tl("yourRank", rank.getReadable());
|
2022-02-05 20:43:49 +00:00
|
|
|
}
|
|
|
|
return null;
|
2022-01-04 03:04:39 +00:00
|
|
|
}
|
|
|
|
}
|