mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-09 04:09:54 +01:00
Fixed fireball explosions not producing fire.
This commit is contained in:
parent
a9e7b56ef2
commit
80770314d8
@ -151,7 +151,7 @@ public class EntityFireball extends Entity {
|
||||
|
||||
CraftServer server = ((WorldServer) this.world).getServer();
|
||||
|
||||
ExplosionPrimeEvent event = new ExplosionPrimeEvent(CraftEntity.getEntity(server, this), 1.0F, false);
|
||||
ExplosionPrimeEvent event = new ExplosionPrimeEvent(CraftEntity.getEntity(server, this), 1.0F, true);
|
||||
server.getPluginManager().callEvent(event);
|
||||
if (!event.isCancelled()) {
|
||||
// give 'this' instead of (Entity) null so we know what causes the damage
|
||||
|
@ -239,7 +239,8 @@ public class Explosion {
|
||||
this.world.a("smoke", d0, d1, d2, d3, d4, d5);
|
||||
}
|
||||
|
||||
if (i1 > 0) {
|
||||
// CraftBukkit - stop explosions from putting out fire
|
||||
if (i1 > 0 && i1 != Block.FIRE.id) {
|
||||
// CraftBukkit
|
||||
Block.byId[i1].dropNaturally(this.world, j, k, l, this.world.getData(j, k, l), event.getYield());
|
||||
this.world.setTypeId(j, k, l, 0);
|
||||
|
Loading…
Reference in New Issue
Block a user