The /npc equip command shouldn't be type-restricted anymore (whoops)

This commit is contained in:
fullwall 2013-02-17 17:31:23 +08:00
parent 913857f7a2
commit 176bcfc02e
1 changed files with 1 additions and 2 deletions

View File

@ -23,8 +23,7 @@ public class EditorCommands {
min = 1,
max = 1,
permission = "citizens.npc.edit.equip")
@Requirements(selected = true, ownership = true, types = { EntityType.ENDERMAN, EntityType.PLAYER, EntityType.PIG,
EntityType.SHEEP })
@Requirements(selected = true, ownership = true)
public void equip(CommandContext args, Player player, NPC npc) {
Editor.enterOrLeave(player, new EquipmentEditor(player, npc));
}