Creates an explosion. Args: entity, x, y, z, strength
(Entity entityIn, double x, double y, double z, float strength, boolean isSmoking)
| 2204 | * Creates an explosion. Args: entity, x, y, z, strength |
| 2205 | */ |
| 2206 | public Explosion createExplosion(Entity entityIn, double x, double y, double z, float strength, boolean isSmoking) |
| 2207 | { |
| 2208 | return this.newExplosion(entityIn, x, y, z, strength, false, isSmoking); |
| 2209 | } |
| 2210 | |
| 2211 | /** |
| 2212 | * returns a new explosion. Does initiation (at time of writing Explosion is not finished) |
no test coverage detected