mirror of
https://github.com/EssentialsX/Essentials.git
synced 2025-03-02 11:11:58 +01:00
[Fix] fireball-fire=true now prevents fire spread from fireballs
This commit is contained in:
parent
2affce875c
commit
ce48f2f326
@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user