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)
| 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 |
nothing calls this directly
no test coverage detected