From fe34013fc2c1f873ec058eb6e172f4f9b9086c67 Mon Sep 17 00:00:00 2001 From: TheBukor Date: Wed, 15 Jun 2016 10:28:26 -0300 Subject: [PATCH] That was super dumb. Actually added registration for 1.10. --- src/me/TheBukor/SkStuff/SkStuff.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/me/TheBukor/SkStuff/SkStuff.java b/src/me/TheBukor/SkStuff/SkStuff.java index 82636f8..d19c6a3 100644 --- a/src/me/TheBukor/SkStuff/SkStuff.java +++ b/src/me/TheBukor/SkStuff/SkStuff.java @@ -93,6 +93,7 @@ import me.TheBukor.SkStuff.expressions.ExprVanishState; import me.TheBukor.SkStuff.expressions.ExprWGMemberOwner; import me.TheBukor.SkStuff.expressions.ExprWordsToUpperCase; import me.TheBukor.SkStuff.util.NMSInterface; +import me.TheBukor.SkStuff.util.NMS_v1_10_R1; import me.TheBukor.SkStuff.util.NMS_v1_7_R4; import me.TheBukor.SkStuff.util.NMS_v1_8_R3; import me.TheBukor.SkStuff.util.NMS_v1_9_R1; @@ -342,6 +343,9 @@ public class SkStuff extends JavaPlugin { } else if (version.equals("v1_9_R2.")) { nmsMethods = new NMS_v1_9_R2(); getLogger().info("It looks like you're running 1.9.4!"); + } else if (version.equals("v1_10_R1.")) { + nmsMethods = new NMS_v1_10_R1(); + getLogger().info("It looks like you're running 1.10!"); } else { getLogger().warning("It looks like you're running an unsupported server version, some features will not be available :("); }