13
0
geforkt von Mirrors/Paper

Changing the blockList on explosions now correctly updates which blocks are changed

Dieser Commit ist enthalten in:
Nathan Adams 2011-10-11 00:37:39 +01:00
Ursprung 7e005474b6
Commit a49a358349

Datei anzeigen

@ -195,6 +195,15 @@ public class Explosion {
EntityExplodeEvent event = new EntityExplodeEvent(explode, location, blockList);
this.world.getServer().getPluginManager().callEvent(event);
arraylist.clear();
blocks.clear();
for (org.bukkit.block.Block block : event.blockList()) {
ChunkCoordinates coords = new ChunkCoordinates(block.getX(), block.getY(), block.getZ());
arraylist.add(coords);
blocks.add(coords);
}
if (event.isCancelled()) {
this.wasCanceled = true;
return;