Water Erosion

Water Erosion

366k Downloads

Support Custom Blocks provided by other mods

13rac1 opened this issue ยท 0 comments

commented

Curseforge user DcNdrew points out: https://www.curseforge.com/minecraft/mc-mods/water-erosion?comment=69

Biomes O' Plenty dirt doesn't work.

Water Erosion Forge and Fabric versions will have slightly different Custom Block systems and will be unable to use common code. I wish the BlockTags class had something to identify Dirt like Sand and Leaves do.

Docs:

A Fabric code example:

import net.minecraft.util.registry.Registry;
System.out.println(Registry.BLOCK.get(0));
# [STDOUT]: Block{minecraft:air}

A Forge example from TerraForged:

Biomes O' Plenty (Forge):

Traverse (Forge):

Terrestria (Fabric)

Traverse (Fabric)