diff --git a/src/net/citizensnpcs/command/command/NPCCommands.java b/src/net/citizensnpcs/command/command/NPCCommands.java index 69d38688b..b618b27ec 100644 --- a/src/net/citizensnpcs/command/command/NPCCommands.java +++ b/src/net/citizensnpcs/command/command/NPCCommands.java @@ -174,7 +174,8 @@ public class NPCCommands { Messaging.sendError(player, "The NPC already has the character '" + args.getString(1) + "'."); return; } - if (!player.hasPermission("citizens.npc.character." + character.getName())) { + if (!player.hasPermission("citizens.npc.character." + character.getName()) + && !player.hasPermission("citizens.npc.character.*")) { Messaging.sendError(player, "You don't have permission to execute that command."); return; }