Creates explosion at given coordinates with given power @param x X coordinate @param y Y coordinate @param z Z coordinate @param power The power of explosion, where 4F is TNT @return false if explosion was canceled, otherwise true
(double x, double y, double z, float power)
| 2221 | * @return false if explosion was canceled, otherwise true |
| 2222 | */ |
| 2223 | default boolean createExplosion(double x, double y, double z, float power) { |
| 2224 | return this.createExplosion(x, y, z, power, false, true); |
| 2225 | } |
| 2226 |
no outgoing calls
no test coverage detected