TNT now gives its entity to the damage handler

This commit is contained in:
Gunther De Wachter 2011-03-17 18:30:14 +01:00 committed by Erik Broes
parent b6f87bb23c
commit 41752f401c

View File

@ -75,7 +75,8 @@ public class EntityTNTPrimed extends Entity {
server.getPluginManager().callEvent(event);
if (!event.isCancelled()) {
this.world.a((Entity) null, this.locX, this.locY, this.locZ, event.getRadius(), event.getFire());
// give 'this' instead of (Entity) null so we know what causes the damage
this.world.a(this, this.locX, this.locY, this.locZ, event.getRadius(), event.getFire());
}
// CraftBukkit end
}