Fix compile-time error due to 23766f20

This commit is contained in:
wizjany 2013-11-17 21:16:51 -05:00
parent 723928d239
commit 5f32ebe2de

View File

@ -842,9 +842,8 @@ public void onBlockFade(BlockFadeEvent event) {
return; return;
} }
break; break;
}
if (type == BlockID.SOIL) { case BlockID.SOIL:
if (wcfg.disableSoilDehydration) { if (wcfg.disableSoilDehydration) {
event.setCancelled(true); event.setCancelled(true);
return; return;
@ -854,7 +853,9 @@ public void onBlockFade(BlockFadeEvent event) {
event.setCancelled(true); event.setCancelled(true);
return; return;
} }
break;
} }
} }
/* /*