Skip to content

Commit

Permalink
Fix Fireballs not breaking blocks
Browse files Browse the repository at this point in the history
Fixes #1044

Signed-off-by: Walker Crouse <[email protected]>
  • Loading branch information
windy1 committed Nov 28, 2016
1 parent a0e0fb0 commit d9259e3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ protected net.minecraft.world.Explosion onExplode(net.minecraft.world.World worl
.sourceExplosive(this)
.radius(strength)
.canCauseFire(flaming && griefer)
.shouldPlaySmoke(smoking && griefer))
.shouldPlaySmoke(smoking && griefer)
.shouldBreakBlocks(strength > 0 && griefer))
.orElse(null);
}

Expand Down

0 comments on commit d9259e3

Please sign in to comment.