Jump to content

Recommended Posts

Posted

Hey, title says most of it. I'm trying to create an explosion that will not damage the environment (only damage the player, play sound, create particles). I'm trying to do this under certain conditions for creepers. According to the documentation of the Explosion class, doExplosionB() should do what I want. This is what I have right now:

@SubscribeEvent
public void onWorldExplosion(ExplosionEvent.Start event)
{
    Entity cause = event.explosion.exploder;

    if (cause instanceof EntityCreeper)
    {
        event.setCanceled(true);
        Explosion explosion = new Explosion(event.world, cause, event.explosion.explosionX, event.explosion.explosionY, event.explosion.explosionZ, ((EntityCreeper) cause).getPowered() ? 6 : 3);
        explosion.doExplosionB(true);
    }
}

However, I must not understand the consequences of using doExplosionB() without doExplosion(), because this does not work. The creeper disappears and no explosion is created.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.