mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
55 lines
2.0 KiB
Diff
55 lines
2.0 KiB
Diff
--- a/net/minecraft/server/EntityTNTPrimed.java
|
|
+++ b/net/minecraft/server/EntityTNTPrimed.java
|
|
@@ -1,6 +1,7 @@
|
|
package net.minecraft.server;
|
|
|
|
import javax.annotation.Nullable;
|
|
+import org.bukkit.event.entity.ExplosionPrimeEvent; // CraftBukkit
|
|
|
|
public class EntityTNTPrimed extends Entity {
|
|
|
|
@@ -8,6 +9,8 @@
|
|
@Nullable
|
|
private EntityLiving source;
|
|
private int c;
|
|
+ public float yield = 4; // CraftBukkit - add field
|
|
+ public boolean isIncendiary = false; // CraftBukkit - add field
|
|
|
|
public EntityTNTPrimed(World world) {
|
|
super(world);
|
|
@@ -64,10 +67,13 @@
|
|
|
|
--this.c;
|
|
if (this.c <= 0) {
|
|
- this.die();
|
|
+ // CraftBukkit start - Need to reverse the order of the explosion and the entity death so we have a location for the event
|
|
+ // this.die();
|
|
if (!this.world.isClientSide) {
|
|
this.explode();
|
|
}
|
|
+ this.die();
|
|
+ // CraftBukkit end
|
|
} else {
|
|
this.aq();
|
|
this.world.addParticle(EnumParticle.SMOKE_NORMAL, this.locX, this.locY + 0.5D, this.locZ, 0.0D, 0.0D, 0.0D, new int[0]);
|
|
@@ -76,9 +82,17 @@
|
|
}
|
|
|
|
private void explode() {
|
|
- float f = 4.0F;
|
|
+ // CraftBukkit start
|
|
+ // float f = 4.0F;
|
|
|
|
- this.world.explode(this, this.locX, this.locY + (double) (this.length / 16.0F), this.locZ, 4.0F, true);
|
|
+ org.bukkit.craftbukkit.CraftServer server = this.world.getServer();
|
|
+ ExplosionPrimeEvent event = new ExplosionPrimeEvent((org.bukkit.entity.Explosive) org.bukkit.craftbukkit.entity.CraftEntity.getEntity(server, this));
|
|
+ server.getPluginManager().callEvent(event);
|
|
+
|
|
+ if (!event.isCancelled()) {
|
|
+ this.world.createExplosion(this, this.locX, this.locY + (double) (this.length / 16.0F), this.locZ, event.getRadius(), event.getFire(), true);
|
|
+ }
|
|
+ // CraftBukkit end
|
|
}
|
|
|
|
protected void b(NBTTagCompound nbttagcompound) {
|