fix terra gen

This commit is contained in:
Sen 2025-07-29 23:12:16 +02:00
parent e1c75f577d
commit cef99a063a
Signed by: sen
GPG key ID: 3AC50A6F47D1B722
19 changed files with 68 additions and 50 deletions

View file

@ -38,7 +38,7 @@ public class BlockBush extends Block
*/
protected boolean canPlaceBlockOn(Block ground)
{
return ground == Blocks.grass || ground == Blocks.dirt || ground == Blocks.farmland || ground == Blocks.tian_soil;
return ground == Blocks.grass || ground == Blocks.dirt || ground == Blocks.coarse_dirt || ground == Blocks.podzol || ground == Blocks.farmland || ground == Blocks.tian_soil;
}
/**