Paper/nms-patches/EntityTNTPrimed.patch

55 lines
1.9 KiB
Diff
Raw Normal View History

2015-05-25 12:37:24 +02:00
--- a/net/minecraft/server/EntityTNTPrimed.java
+++ b/net/minecraft/server/EntityTNTPrimed.java
2016-11-17 02:41:03 +01:00
@@ -1,6 +1,7 @@
package net.minecraft.server;
2016-11-17 02:41:03 +01:00
import javax.annotation.Nullable;
+import org.bukkit.event.entity.ExplosionPrimeEvent; // CraftBukkit
2016-11-17 02:41:03 +01:00
public class EntityTNTPrimed extends Entity {
2016-11-17 02:41:03 +01:00
@@ -8,6 +9,8 @@
@Nullable
private EntityLiving source;
2016-02-29 22:32:46 +01:00
private int c;
+ public float yield = 4; // CraftBukkit - add field
+ public boolean isIncendiary = false; // CraftBukkit - add field
public EntityTNTPrimed(World world) {
2018-07-15 02:00:00 +02:00
super(EntityTypes.TNT, world);
2017-05-14 04:00:00 +02:00
@@ -64,10 +67,13 @@
2016-02-29 22:32:46 +01:00
--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();
2015-02-26 23:41:06 +01:00
if (!this.world.isClientSide) {
this.explode();
}
+ this.die();
+ // CraftBukkit end
} else {
2018-07-15 02:00:00 +02:00
this.at();
this.world.addParticle(Particles.M, this.locX, this.locY + 0.5D, this.locZ, 0.0D, 0.0D, 0.0D);
2017-05-14 04:00:00 +02:00
@@ -76,9 +82,17 @@
}
private void explode() {
- float f = 4.0F;
+ // CraftBukkit start
+ // float f = 4.0F;
2015-02-26 23:41:06 +01:00
2016-06-09 03:43:49 +02:00
- this.world.explode(this, this.locX, this.locY + (double) (this.length / 16.0F), this.locZ, 4.0F, true);
2016-02-29 22:32:46 +01:00
+ 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()) {
2016-06-09 03:43:49 +02:00
+ 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) {