Version number goes up!
This commit is contained in:
parent
6bdfc3196e
commit
5e0467bc20
@ -1,6 +1,6 @@
|
|||||||
name: SkStuff
|
name: SkStuff
|
||||||
author: TheBukor
|
author: TheBukor
|
||||||
description: A Skript addon which adds extra functionalities such as NBT and extended WorldEdit support.
|
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
|
main: me.TheBukor.SkStuff.SkStuff
|
||||||
softdepend: [Skript, WorldEdit, VanishNoPacket]
|
softdepend: [Skript, WorldEdit, VanishNoPacket]
|
@ -158,6 +158,17 @@ public class EffSetPathGoal extends Effect {
|
|||||||
bowShootFollowRange = (Expression<Number>) expr[37];
|
bowShootFollowRange = (Expression<Number>) expr[37];
|
||||||
}
|
}
|
||||||
entities = (Expression<LivingEntity>) expr[38];
|
entities = (Expression<LivingEntity>) 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;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user