Treat kelp as vines for vine-growth.

Closes WORLDGUARD-4068.
This commit is contained in:
wizjany 2019-04-19 23:25:26 -04:00
parent 1dbd25d15e
commit e94af1d77e

View File

@ -598,7 +598,7 @@ public void onBlockSpread(BlockSpreadEvent event) {
}
}
if (fromType == Material.VINE) {
if (fromType == Material.VINE || fromType == Material.KELP) {
if (wcfg.disableVineGrowth) {
event.setCancelled(true);
return;