[Fix] fireball-fire=true now prevents fire spread from fireballs

This commit is contained in:
coegho 2014-01-06 03:53:51 +01:00 committed by KHobbits
parent 2affce875c
commit ce48f2f326
1 changed files with 6 additions and 0 deletions

View File

@ -51,6 +51,12 @@ public class EssentialsProtectBlockListener implements Listener
if (event.getCause().equals(BlockIgniteEvent.IgniteCause.LIGHTNING))
{
event.setCancelled(prot.getSettingBool(ProtectConfig.prevent_lightning_fire_spread));
return;
}
if (event.getCause().equals(BlockIgniteEvent.IgniteCause.FIREBALL))
{
event.setCancelled(prot.getSettingBool(ProtectConfig.prevent_fireball_fire));
}
}