Home Commands Examples Getting Started With Scripts Global Keywords 1.21 Migration Guide
NeoForgeBracketDumpers NeoForgeBracketHandlers NeoForgeBracketValidators

DetonateExplosionEvent

Importing the class

If you need to reference this type directly, like when casting an Array, or as a parameter, you will need to import it. Simply add the import at the top of the file.

script.zs
import crafttweaker.neoforge.api.event.DetonateExplosionEvent;

Extends

DetonateExplosionEvent extends ExplosionEvent.

Listening to the event

This event can be listened to like so:

script.zs
events.register<crafttweaker.neoforge.api.event.DetonateExplosionEvent>(event => {
println("DetonateExplosionEvent ran!");
});

Members

Getter
script.zs
// Detonate.affectedBlocks as List<BlockPos>
event.affectedBlocks

Return Type: List<BlockPos>

Getter
script.zs
// Detonate.affectedEntities as List<Entity>
event.affectedEntities

Return Type: List<Entity>

Getter
script.zs
// Detonate.explosion as Explosion
event.explosion

Return Type: Explosion

Getter
script.zs
// Detonate.level as Level
event.level

Return Type: Level