Small fixes

This commit is contained in:
paulevsGitch 2020-11-01 15:59:06 +03:00
parent 5d78a4b28f
commit 67faa4a1d0
2 changed files with 7 additions and 1 deletions

View file

@ -91,6 +91,12 @@ public class BoneMealItemMixin {
else if (block == EndBlocks.CHORUS_NYLIUM) {
return EndBlocks.CHORUS_GRASS.getDefaultState();
}
else if (block == EndBlocks.CRYSTAL_MOSS) {
return EndBlocks.CRYSTAL_GRASS.getDefaultState();
}
else if (block == EndBlocks.SHADOW_GRASS) {
return EndBlocks.SHADOW_PLANT.getDefaultState();
}
return null;
}

View file

@ -38,7 +38,7 @@ public class EndFeatures {
// Bushes //
public static final EndFeature PYTHADENDRON_BUSH = new EndFeature("pythadendron_bush", new PythadendronBushFeature(), 4);
public static final EndFeature DRAGON_TREE_BUSH = new EndFeature("dragon_tree_bush", new DragonTreeBushFeature(), 4);
public static final EndFeature DRAGON_TREE_BUSH = new EndFeature("dragon_tree_bush", new DragonTreeBushFeature(), 12);
// Plants //
public static final EndFeature UMBRELLA_MOSS = new EndFeature("umbrella_moss", new DoublePlantFeature(EndBlocks.UMBRELLA_MOSS, EndBlocks.UMBRELLA_MOSS_TALL, 5), 5);