use of nex.world.ExplosionSpore in project NetherEx by LogicTechCorp.
the class EntitySporeCreeper method explode.
private void explode() {
dead = true;
Explosion explosion = new ExplosionSpore(world, this, posX, posY, posZ, (float) explosionRadius, true, true);
explosion.doExplosionA();
explosion.doExplosionB(true);
setDead();
spawnLingeringCloud();
}
Aggregations