Add API for creating explosions without damaging blocks. Fixes BUKKIT-3061

By: feildmaster <admin@feildmaster.com>
This commit is contained in:
Bukkit/Spigot 2012-11-27 18:31:12 -06:00
parent 09c601dfa5
commit 81cc73ac21

View file

@ -560,6 +560,20 @@ public interface World extends PluginMessageRecipient, Metadatable {
*/
public boolean createExplosion(double x, double y, double z, float power, boolean setFire);
/**
* Creates explosion at given coordinates with given power and optionally setting
* blocks on fire or breaking blocks.
*
* @param x X coordinate
* @param y Y coordinate
* @param z Z coordinate
* @param power The power of explosion, where 4F is TNT
* @param setFire Whether or not to set blocks on fire
* @param breakBlocks Whether or not to have blocks be destroyed
* @return false if explosion was canceled, otherwise true
*/
public boolean createExplosion(double x, double y, double z, float power, boolean setFire, boolean breakBlocks);
/**
* Creates explosion at given coordinates with given power
*