mirror of
https://github.com/EngineHub/WorldGuard.git
synced 2024-11-24 03:25:24 +01:00
Fix compile-time error due to 23766f20
This commit is contained in:
parent
723928d239
commit
5f32ebe2de
@ -842,9 +842,8 @@ public void onBlockFade(BlockFadeEvent event) {
|
||||
return;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
if (type == BlockID.SOIL) {
|
||||
case BlockID.SOIL:
|
||||
if (wcfg.disableSoilDehydration) {
|
||||
event.setCancelled(true);
|
||||
return;
|
||||
@ -854,7 +853,9 @@ public void onBlockFade(BlockFadeEvent event) {
|
||||
event.setCancelled(true);
|
||||
return;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user