diff --git a/plugin.yml b/plugin.yml index f488b32..47eb831 100644 --- a/plugin.yml +++ b/plugin.yml @@ -1,6 +1,6 @@ name: SkStuff author: TheBukor description: A Skript addon which adds extra functionalities such as NBT and extended WorldEdit support. -version: 1.6.4 +version: 1.6.4.1 main: me.TheBukor.SkStuff.SkStuff softdepend: [Skript, WorldEdit, VanishNoPacket] \ No newline at end of file diff --git a/src/me/TheBukor/SkStuff/effects/EffSetPathGoal.java b/src/me/TheBukor/SkStuff/effects/EffSetPathGoal.java index 021533d..a70d5c1 100644 --- a/src/me/TheBukor/SkStuff/effects/EffSetPathGoal.java +++ b/src/me/TheBukor/SkStuff/effects/EffSetPathGoal.java @@ -158,6 +158,17 @@ public class EffSetPathGoal extends Effect { bowShootFollowRange = (Expression) expr[37]; } entities = (Expression) expr[38]; + /* Debug stuff, just in case I need it + int i = 0; + for (Expression expression : expr) { + if (expression == null) { + Skript.info("Expression index " + i + " is null."); + } else { + Skript.info("Expression index " + i + " is " + expression.toString()); + } + i++; + } + */ return true; }