mirror of
https://github.com/CitizensDev/Citizens2.git
synced 2024-11-30 22:53:24 +01:00
Update master
This commit is contained in:
parent
5c7ac6926b
commit
5912709b7d
@ -314,6 +314,34 @@ public class NPCCommands {
|
|||||||
Messaging.send(sender, " <a>Type: <e>" + npc.getTrait(MobType.class).getType());
|
Messaging.send(sender, " <a>Type: <e>" + npc.getTrait(MobType.class).getType());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Command(aliases = { "npc" }, usage = "moveto", desc = "Teleports a NPC to a given location", modifiers = "moveto",
|
||||||
|
min = 1, max = 1, permission = "npc.moveto")
|
||||||
|
public void moveto(CommandContext args, CommandSender sender, NPC npc) {
|
||||||
|
// Spawn the NPC if it isn't spawned to prevent NPEs
|
||||||
|
if (!npc.isSpawned())
|
||||||
|
npc.spawn(npc.getTrait(CurrentLocation.class).getLocation());
|
||||||
|
Location current = npc.getBukkitEntity().getLocation();
|
||||||
|
Location to = current.clone();
|
||||||
|
if (args.hasFlag("x"))
|
||||||
|
to.setX(args.getFlagInteger("x"));
|
||||||
|
if (args.hasFlag("y"))
|
||||||
|
to.setY(args.getFlagInteger("y"));
|
||||||
|
if (args.hasFlag("z"))
|
||||||
|
to.setZ(args.getFlagInteger("z"));
|
||||||
|
if (args.hasFlag("yaw"))
|
||||||
|
to.setYaw((float) args.getFlagDouble("yaw"));
|
||||||
|
if (args.hasFlag("pitch"))
|
||||||
|
to.setPitch((float) args.getFlagDouble("pitch"));
|
||||||
|
if (args.hasFlag("world")){
|
||||||
|
World world = Bukkit.getWorld(args.getFlag("world"));
|
||||||
|
if (world == null)
|
||||||
|
throw new CommandException("Given world not found.");
|
||||||
|
to.setWorld(world);
|
||||||
|
}
|
||||||
|
npc.getBukkitEntity().teleport(to, TeleportCause.COMMAND);
|
||||||
|
Messaging.send(sender, StringHelper.wrap(npc.getName()) + " was teleported to " + to + ".");
|
||||||
|
}
|
||||||
|
|
||||||
@Command(
|
@Command(
|
||||||
aliases = { "npc" },
|
aliases = { "npc" },
|
||||||
usage = "owner [name]",
|
usage = "owner [name]",
|
||||||
|
Loading…
Reference in New Issue
Block a user