returns a new explosion. Does initiation (at time of writing Explosion is not finished)
(Entity entityIn, double x, double y, double z, float strength, boolean isFlaming, boolean isSmoking)
| 2212 | * returns a new explosion. Does initiation (at time of writing Explosion is not finished) |
| 2213 | */ |
| 2214 | public Explosion newExplosion(Entity entityIn, double x, double y, double z, float strength, boolean isFlaming, boolean isSmoking) |
| 2215 | { |
| 2216 | Explosion explosion = new Explosion(this, entityIn, x, y, z, strength, isFlaming, isSmoking); |
| 2217 | explosion.doExplosionA(); |
| 2218 | explosion.doExplosionB(true); |
| 2219 | return explosion; |
| 2220 | } |
| 2221 | |
| 2222 | /** |
| 2223 | * Gets the percentage of real blocks within within a bounding box, along a specified vector. |
no test coverage detected