From ba23129b156bc8174035a65aeceb4ae61ca07f2f Mon Sep 17 00:00:00 2001 From: Video Date: Wed, 30 Aug 2023 13:11:35 -0600 Subject: [PATCH] Removes /nh --- .../dev/plex/command/impl/NameHistoryCMD.java | 68 ------------------- 1 file changed, 68 deletions(-) delete mode 100644 server/src/main/java/dev/plex/command/impl/NameHistoryCMD.java diff --git a/server/src/main/java/dev/plex/command/impl/NameHistoryCMD.java b/server/src/main/java/dev/plex/command/impl/NameHistoryCMD.java deleted file mode 100644 index ac20f00..0000000 --- a/server/src/main/java/dev/plex/command/impl/NameHistoryCMD.java +++ /dev/null @@ -1,68 +0,0 @@ -package dev.plex.command.impl; - -import com.google.common.collect.ImmutableList; -import com.google.common.collect.Lists; -import dev.plex.command.PlexCommand; -import dev.plex.command.annotation.CommandParameters; -import dev.plex.command.annotation.CommandPermissions; - -import dev.plex.util.*; -import net.kyori.adventure.text.Component; -import net.kyori.adventure.text.format.NamedTextColor; -import org.bukkit.command.CommandSender; -import org.bukkit.entity.Player; -import org.jetbrains.annotations.NotNull; -import org.jetbrains.annotations.Nullable; - -import java.util.Arrays; -import java.util.List; - -@CommandParameters(name = "namehistory", description = "Get the name history of a player", usage = "/ ", aliases = "nh") -@CommandPermissions(permission = "plex.namehistory") -public class NameHistoryCMD extends PlexCommand -{ - @Override - protected Component execute(@NotNull CommandSender sender, @Nullable Player playerSender, String[] args) - { - if (args.length != 1) - { - return usage(); - } - String username = args[0]; - - AshconInfo info = MojangUtils.getInfo(username); - if (info == null) - { - return messageComponent("nameHistoryDoesntExist"); - } - PlexLog.debug("NameHistory UUID: " + info.getUuid()); - PlexLog.debug("NameHistory Size: " + info.getUsernameHistories().length); - List historyList = Lists.newArrayList(); - Arrays.stream(info.getUsernameHistories()).forEach(history -> - { - if (history.getZonedDateTime() != null) - { - historyList.add( - messageComponent("nameHistoryBody", - history.getUsername(), - TimeUtils.useTimezone(history.getZonedDateTime()))); - } - else - { - historyList.add( - Component.text(history.getUsername()).color(NamedTextColor.GOLD) - .append(Component.space())); - } - }); - send(sender, messageComponent("nameHistoryTitle", username)); - send(sender, messageComponent("nameHistorySeparator")); - historyList.forEach(component -> send(sender, component)); - return null; - } - - @Override - public @NotNull List tabComplete(@NotNull CommandSender sender, @NotNull String alias, @NotNull String[] args) throws IllegalArgumentException - { - return args.length == 1 ? PlexUtils.getPlayerNameList() : ImmutableList.of(); - } -} \ No newline at end of file