From e786083e1e51010f3cf01cb3182e828279b366b3 Mon Sep 17 00:00:00 2001 From: mcmonkey4eva Date: Sat, 29 Nov 2014 13:35:06 -0800 Subject: [PATCH 1/3] Add dependencies back, bump version build as 2.0.14, build against 1.8 --- pom.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index 52eabd8ab..d353d18dc 100644 --- a/pom.xml +++ b/pom.xml @@ -6,12 +6,12 @@ net.citizensnpcs citizens - 2.0.13-SNAPSHOT + 2.0.14-SNAPSHOT Citizens UTF-8 - 1.7.10-R0.1-SNAPSHOT + 1.8-R0.1-SNAPSHOT 2.0.13-SNAPSHOT 1.4.1 1.4.12 @@ -42,7 +42,7 @@ - + net.citizensnpcs citizensapi From a89afc29d671350e2b0206c47afc725f15abe7e0 Mon Sep 17 00:00:00 2001 From: mcmonkey4eva Date: Sat, 29 Nov 2014 13:51:20 -0800 Subject: [PATCH 2/3] Allow lowercase entity types --- src/main/java/net/citizensnpcs/commands/NPCCommands.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); From f461dad41e3874ef2719661670b06a4e4b21b44e Mon Sep 17 00:00:00 2001 From: mcmonkey4eva Date: Sat, 29 Nov 2014 14:42:44 -0800 Subject: [PATCH 3/3] Target API v14 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d353d18dc..5e063194c 100644 --- a/pom.xml +++ b/pom.xml @@ -12,7 +12,7 @@ UTF-8 1.8-R0.1-SNAPSHOT - 2.0.13-SNAPSHOT + 2.0.14-SNAPSHOT 1.4.1 1.4.12 Unknown