MCPcopy Index your code
hub / github.com/PaperMC/Paper / createExplosion

Method createExplosion

paper-api/src/main/java/org/bukkit/Location.java:773–775  ·  view source on GitHub ↗

Creates explosion at this location with given power Will break blocks and ignite blocks on fire. @param power The power of explosion, where 4F is TNT @return false if explosion was canceled, otherwise true

(float power)

Source from the content-addressed store, hash-verified

771 * @return false if explosion was canceled, otherwise true
772 */
773 public boolean createExplosion(float power) {
774 return this.getWorld().createExplosion(this, power);
775 }
776
777 /**
778 * Creates explosion at this location with given power and optionally

Callers

nothing calls this directly

Calls 2

getWorldMethod · 0.95
createExplosionMethod · 0.65

Tested by

no test coverage detected