From 94c16c4efc4d73e86fd4fa8c026e912a3f2d3595 Mon Sep 17 00:00:00 2001 From: fullwall Date: Sun, 17 Mar 2013 11:28:04 +0800 Subject: [PATCH] Allow non-players to have anchors and poses --- src/main/java/net/citizensnpcs/commands/NPCCommands.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/net/citizensnpcs/commands/NPCCommands.java b/src/main/java/net/citizensnpcs/commands/NPCCommands.java index 827ee7396..6086b97d5 100644 --- a/src/main/java/net/citizensnpcs/commands/NPCCommands.java +++ b/src/main/java/net/citizensnpcs/commands/NPCCommands.java @@ -139,7 +139,7 @@ public class NPCCommands { min = 1, max = 3, permission = "citizens.npc.anchor") - @Requirements(selected = true, ownership = true, types = EntityType.PLAYER) + @Requirements(selected = true, ownership = true) public void anchor(CommandContext args, CommandSender sender, NPC npc) throws CommandException { Anchors trait = npc.getTrait(Anchors.class); if (args.hasValueFlag("save")) { @@ -746,7 +746,7 @@ public class NPCCommands { min = 1, max = 2, permission = "citizens.npc.pose") - @Requirements(selected = true, ownership = true, types = EntityType.PLAYER) + @Requirements(selected = true, ownership = true) public void pose(CommandContext args, CommandSender sender, NPC npc) throws CommandException { Poses trait = npc.getTrait(Poses.class); if (args.hasValueFlag("save")) { @@ -1219,4 +1219,4 @@ public class NPCCommands { npc.getName()); } } -} \ No newline at end of file +}