More intuituve EntityPlayer creation.

This commit is contained in:
batchprogrammer314
2021-06-29 17:05:11 -05:00
parent 9520274e5e
commit 54c7afb957
4 changed files with 10 additions and 13 deletions

View File

@@ -18,7 +18,7 @@ public class CommandHandler {
public CommandHandler(PlayerAI plugin) {
drink = (DrinkCommandService) Drink.get(plugin);
drink.register(new PlayerAICommand(this), "bot", "playerai", "pai", "ai", "npc");
drink.register(new PlayerAICommand(this), "bot", "playerai", "pai", "ai", "npc", "k");
drink.registerCommands();
help = new HashMap<>();

View File

@@ -12,11 +12,8 @@ import net.nuggetmc.ai.commands.CommandInstance;
import net.nuggetmc.ai.utils.ChatUtils;
import org.bukkit.ChatColor;
import org.bukkit.Location;
import org.bukkit.Particle;
import org.bukkit.World;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
import org.bukkit.util.Vector;
import java.text.NumberFormat;
import java.util.Locale;