mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-11 18:22:08 -07:00
@@ -15,6 +15,7 @@ public class EntityExplodeEvent extends EntityEvent implements Cancellable {
|
|||||||
private boolean cancel;
|
private boolean cancel;
|
||||||
private Location location;
|
private Location location;
|
||||||
private List blocks;
|
private List blocks;
|
||||||
|
private float yield = 0.3F;
|
||||||
|
|
||||||
public EntityExplodeEvent (Type type, Entity what, Location location, List<Block> blocks) {
|
public EntityExplodeEvent (Type type, Entity what, Location location, List<Block> blocks) {
|
||||||
super(type.ENTITY_EXPLODE, what);
|
super(type.ENTITY_EXPLODE, what);
|
||||||
@@ -48,4 +49,18 @@ public class EntityExplodeEvent extends EntityEvent implements Cancellable {
|
|||||||
return location;
|
return location;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the percentage of blocks to drop from this explosion
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
public float getYield() {
|
||||||
|
return yield;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the percentage of blocks to drop from this explosion
|
||||||
|
*/
|
||||||
|
public void setYield(float yield) {
|
||||||
|
this.yield = yield;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user