Fixed water plant generation

This commit is contained in:
Adubbz 2019-12-27 18:39:58 +11:00
parent e209b53009
commit 6abee962d5
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ public class BiomeFeatureHelper
public static BlockClusterFeatureConfig createClusterConfigurationDoubleWater(BlockState state)
{
return (new BlockClusterFeatureConfig.Builder(new SimpleBlockStateProvider(state), new DoublePlantBlockPlacer())).whitelist(ImmutableSet.of(Blocks.WATER)).tries(64).noProjection().build();
return (new BlockClusterFeatureConfig.Builder(new SimpleBlockStateProvider(state), new DoublePlantBlockPlacer())).canReplace().tries(64).noProjection().build();
}
}