Amber moss & grass, helix sapling

This commit is contained in:
paulevsGitch 2020-12-10 11:34:15 +03:00
parent f35146610b
commit 5bd4abebfb
34 changed files with 162 additions and 48 deletions

View file

@ -0,0 +1,12 @@
package ru.betterend.blocks;
import net.minecraft.world.gen.feature.Feature;
import ru.betterend.blocks.basis.BlockFeatureSapling;
import ru.betterend.registry.EndFeatures;
public class BlockHelixTreeSapling extends BlockFeatureSapling {
@Override
protected Feature<?> getFeature() {
return EndFeatures.HELIX_TREE.getFeature();
}
}