diff --git a/pom.xml b/pom.xml index 52eabd8ab..5e063194c 100644 --- a/pom.xml +++ b/pom.xml @@ -6,13 +6,13 @@ net.citizensnpcs citizens - 2.0.13-SNAPSHOT + 2.0.14-SNAPSHOT Citizens UTF-8 - 1.7.10-R0.1-SNAPSHOT - 2.0.13-SNAPSHOT + 1.8-R0.1-SNAPSHOT + 2.0.14-SNAPSHOT 1.4.1 1.4.12 Unknown @@ -42,7 +42,7 @@ - + net.citizensnpcs citizensapi diff --git a/src/main/java/net/citizensnpcs/commands/NPCCommands.java b/src/main/java/net/citizensnpcs/commands/NPCCommands.java index 08a6f66fc..58bfe4ccd 100644 --- a/src/main/java/net/citizensnpcs/commands/NPCCommands.java +++ b/src/main/java/net/citizensnpcs/commands/NPCCommands.java @@ -296,7 +296,7 @@ public class NPCCommands { EntityType type = EntityType.PLAYER; if (args.hasValueFlag("type")) { - String inputType = args.getFlag("type"); + String inputType = args.getFlag("type").toUpperCase(); type = Util.matchEntityType(inputType); if (type == null) { throw new CommandException(Messaging.tr(Messages.NPC_CREATE_INVALID_MOBTYPE, inputType));