This commit is contained in:
tastybento 2019-05-08 12:45:59 -07:00
commit d6fd3e4da1
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ class EcoSystemManager {
}
private void convertBlocks(Greenhouse gh) {
getAvailableBlocks(gh).forEach(gh.getBiomeRecipe()::convertBlock);
getAvailableBlocks(gh).stream().map(b -> b.getRelative(BlockFace.DOWN)).forEach(gh.getBiomeRecipe()::convertBlock);
}
private void verify(Greenhouse gh) {