1 package org.bukkit.command.defaults;
5 import org.apache.commons.lang.Validate;
6 import org.bukkit.Bukkit;
7 import org.bukkit.ChatColor;
8 import org.bukkit.command.Command;
9 import org.bukkit.command.CommandSender;
10 import org.bukkit.entity.Player;
12 import com.google.common.collect.ImmutableList;
17 this.
description =
"Prevents the specified player from using this server";
25 if (args.length == 0) {
44 Validate.notNull(sender,
"Sender cannot be null");
45 Validate.notNull(args,
"Arguments cannot be null");
46 Validate.notNull(alias,
"Alias cannot be null");
48 if (args.length >= 1) {
49 return super.tabComplete(sender, alias, args);
51 return ImmutableList.of();