1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-09 08:06:54 +02:00

[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 9907bda138
commit dba09cd8f5

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));
}
}