package me.unurled.raxen.commands.admin; import static me.unurled.raxen.utils.Items.itemTo64; import static me.unurled.raxen.utils.Utils.errorConsoleSender; import static me.unurled.raxen.utils.Utils.msgPlayer; import java.util.List; import org.bukkit.command.Command; import org.bukkit.command.CommandSender; import org.bukkit.command.TabExecutor; import org.bukkit.entity.Player; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; public class ItemTo64Command implements TabExecutor { /** * @param sender Source of the command * @param command Command which was executed * @param label Alias of the command which was used * @param args Passed command arguments * @return */ @Override public boolean onCommand( @NotNull CommandSender sender, @NotNull Command command, @NotNull String label, @NotNull String[] args ) { if (sender instanceof Player p) { msgPlayer(p, itemTo64(p.getInventory().getItemInMainHand())); } else { errorConsoleSender(sender); return true; } return false; } /** * @param sender Source of the command. For players tab-completing a command inside of a * command block, this will be the player, not the command block. * @param command Command which was executed * @param label Alias of the command which was used * @param args The arguments passed to the command, including final partial argument to be * completed * @return */ @Override public @Nullable List onTabComplete( @NotNull CommandSender sender, @NotNull Command command, @NotNull String label, @NotNull String[] args ) { return null; } }