Merge pull request #201 from eric-wieser/patch-1

Did `wcfg.useRegions` really need to be checked twice?
This commit is contained in:
zml2008 2012-09-16 12:31:17 -07:00
commit 6df9c3660b

View File

@ -518,14 +518,12 @@ public void onEntityExplode(EntityExplodeEvent event) {
}
if (wcfg.useRegions) {
if (wcfg.useRegions) {
RegionManager mgr = plugin.getGlobalRegionManager().get(world);
RegionManager mgr = plugin.getGlobalRegionManager().get(world);
for (Block block : event.blockList()) {
if (!mgr.getApplicableRegions(toVector(block)).allows(DefaultFlag.ENDERDRAGON_BLOCK_DAMAGE)) {
event.blockList().clear();
return;
}
for (Block block : event.blockList()) {
if (!mgr.getApplicableRegions(toVector(block)).allows(DefaultFlag.ENDERDRAGON_BLOCK_DAMAGE)) {
event.blockList().clear();
return;
}
}
}