16 lines
431 B
Java
16 lines
431 B
Java
package ru.betterend.blocks;
|
|
|
|
import net.minecraft.world.gen.feature.Feature;
|
|
import ru.betterend.blocks.basis.BlockFeatureSapling;
|
|
import ru.betterend.registry.FeatureRegistry;
|
|
|
|
public class BlockMossyGlowshroomSapling extends BlockFeatureSapling {
|
|
public BlockMossyGlowshroomSapling() {
|
|
super(7);
|
|
}
|
|
|
|
@Override
|
|
protected Feature<?> getFeature() {
|
|
return FeatureRegistry.MOSSY_GLOWSHROOM.getFeature();
|
|
}
|
|
}
|