diff --git a/lib/CitizensAPI.jar b/lib/CitizensAPI.jar index 16c4a2cbe..ba7c39bc0 100644 Binary files a/lib/CitizensAPI.jar and b/lib/CitizensAPI.jar differ diff --git a/src/net/citizensnpcs/command/command/NPCCommands.java b/src/net/citizensnpcs/command/command/NPCCommands.java index d75ce0326..c3e644ed1 100644 --- a/src/net/citizensnpcs/command/command/NPCCommands.java +++ b/src/net/citizensnpcs/command/command/NPCCommands.java @@ -123,7 +123,7 @@ public class NPCCommands { @Requirements(ownership = true) public void selectNPC(CommandContext args, Player player, NPC npc) { NPC toSelect = npcManager.getNPC(args.getInteger(1)); - if (toSelect == null || !toSelect.getTrait(Spawned.class).isSpawned()) { + if (toSelect == null || !toSelect.getTrait(Spawned.class).shouldSpawn()) { Messaging.sendError(player, "No NPC with the ID '" + args.getInteger(1) + "' is spawned."); return; }