Feature fix

This commit is contained in:
paulevsGitch 2020-09-30 11:32:46 +03:00
parent 2d53cedb90
commit d272597e87
7 changed files with 6 additions and 7 deletions

View file

@ -2,10 +2,9 @@ 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);
super(FeatureRegistry.MOSSY_GLOWSHROOM, 7);
}
}