SPIGOT-2862: Cannot spawn evoker fangs

This commit is contained in:
md_5 2016-11-30 08:37:06 +11:00
parent 41ade2f291
commit ff324aabe6

View File

@ -1160,7 +1160,7 @@ public class CraftWorld implements World {
} else if (AreaEffectCloud.class.isAssignableFrom(clazz)) {
entity = new EntityAreaEffectCloud(world, x, y, z);
} else if (EvokerFangs.class.isAssignableFrom(clazz)) {
entity = new EntityEvokerFangs(world);
entity = new EntityEvokerFangs(world, x, y, z, yaw, 0, null);
}
if (entity != null) {