Skip to content

Commit

Permalink
Fixed bonemeal terraformer voring dirt blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
me4502 committed Dec 1, 2018
1 parent bebabf5 commit e32c8f8
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -125,7 +125,8 @@ public void terraform() {
}
if (b.getType() == Material.DIRT && b.getRelative(0, 1, 0).getType() == Material.AIR) {
if (consumeBonemeal()) {
b.setType(b.getBiome() == Biome.MUSHROOM_FIELDS || b.getBiome() == Biome.MUSHROOM_FIELD_SHORE ? Material.MYCELIUM : Material.GRASS);
b.setType(b.getBiome() == Biome.MUSHROOM_FIELDS || b.getBiome() == Biome.MUSHROOM_FIELD_SHORE ? Material.MYCELIUM :
Material.GRASS_BLOCK);
}
return;
}
Expand Down

0 comments on commit e32c8f8

Please sign in to comment.