This commit is contained in:
paulevsGitch 2020-09-30 00:14:10 +03:00
parent 518e7b3fcf
commit 46ceaee8be
21 changed files with 207 additions and 55 deletions

View file

@ -0,0 +1,11 @@
package ru.betterend.blocks;
import ru.betterend.blocks.basis.BlockFeatureSapling;
import ru.betterend.registry.FeatureRegistry;
import ru.betterend.world.features.DefaultFeature;
public class BlockMossyGlowshroomSapling extends BlockFeatureSapling {
public BlockMossyGlowshroomSapling() {
super((DefaultFeature) FeatureRegistry.MOSSY_GLOWSHROOM.getFeature(), 7);
}
}