package net.minecraft.command.server; import java.util.List; import net.minecraft.command.CommandBase; import net.minecraft.command.ICommandSender; import net.minecraft.command.WrongUsageException; import net.minecraft.server.MinecraftServer; import net.minecraft.util.ChatComponentTranslation; import net.minecraft.util.IChatComponent; public class CommandEmote extends CommandBase { private static final String __OBFID = "CL_00000351"; public String getCommandName() { return "me"; } /** * Return the required permission level for this command. */ public int getRequiredPermissionLevel() { return 0; } public String getCommandUsage(ICommandSender sender) { return "commands.me.usage"; } public void processCommand(ICommandSender sender, String[] args) { if (args.length > 0) { IChatComponent ichatcomponent = getChatComponentFromNthArg(sender, args, 0, sender.canCommandSenderUseCommand(1, "me")); MinecraftServer.getServer().getConfigurationManager().sendChatMsg(new ChatComponentTranslation("chat.type.emote", new Object[] {sender.getFormattedCommandSenderName(), ichatcomponent})); } else { throw new WrongUsageException("commands.me.usage", new Object[0]); } } /** * Adds the strings available in this command to the given list of tab completion options. */ public List addTabCompletionOptions(ICommandSender sender, String[] args) { /** * Returns a List of strings (chosen from the given strings) which the last word in the given string array is a * beginning-match for. (Tab completion). */ return getListOfStringsMatchingLastWord(args, MinecraftServer.getServer().getAllUsernames()); } }