Fixed an issue where fire spread cancellation changed the behavior of natural fire.

Dieser Commit ist enthalten in:
sk89q 2011-01-28 11:39:45 -08:00
Ursprung 0daa2420da
Commit 8fdd45ab40

Datei anzeigen

@ -99,7 +99,7 @@ public class BlockFire extends Block {
BlockIgniteEvent event = new BlockIgniteEvent(theBlock, igniteCause, thePlayer);
server.getPluginManager().callEvent(event);
if (event.isCancelled()) {
return;
continue;
}
}
// CraftBukkit end