This commit is contained in:
paulevsGitch 2020-11-27 13:03:36 +03:00
parent 352e169ab3
commit bdbacda675
3 changed files with 5 additions and 1 deletions

View file

@ -97,6 +97,9 @@ public class BoneMealItemMixin {
else if (block == EndBlocks.SHADOW_GRASS) {
return EndBlocks.SHADOW_PLANT.getDefaultState();
}
else if (block == EndBlocks.PINK_MOSS) {
return EndBlocks.BUSHY_GRASS.getDefaultState();
}
return null;
}

View file

@ -116,6 +116,7 @@ public class CraftingRecipes {
GridRecipe.make("bulb_lantern", EndBlocks.BULB_LANTERN).addMaterial('C', Items.CHAIN).addMaterial('I', Items.IRON_INGOT).setShape("C", "I", "#").addMaterial('#', EndItems.GLOWING_BULB).build();
GridRecipe.make("twisted_moss_dye", Items.PINK_DYE).setList("#").addMaterial('#', EndBlocks.TWISTED_MOSS).build();
GridRecipe.make("byshy_grass_dye", Items.MAGENTA_DYE).setList("#").addMaterial('#', EndBlocks.BUSHY_GRASS).build();
GridRecipe.make("tail_moss_dye", Items.GRAY_DYE).setList("#").addMaterial('#', EndBlocks.TAIL_MOSS).build();
}
private static void registerLantern(String name, Block lantern, Block slab) {

View file

@ -58,7 +58,7 @@ public class EndFeatures {
public static final EndFeature MURKWEED = new EndFeature("murkweed", new SinglePlantFeature(EndBlocks.MURKWEED, 3), 2);
public static final EndFeature NEEDLEGRASS = new EndFeature("needlegrass", new SinglePlantFeature(EndBlocks.NEEDLEGRASS, 3), 2);
public static final EndFeature SHADOW_BERRY = new EndFeature("shadow_berry", new SinglePlantFeature(EndBlocks.SHADOW_BERRY, 2), 1);
public static final EndFeature BUSHY_GRASS = new EndFeature("bushy_grass", new SinglePlantFeature(EndBlocks.BUSHY_GRASS, 6, false), 10);
public static final EndFeature BUSHY_GRASS = new EndFeature("bushy_grass", new SinglePlantFeature(EndBlocks.BUSHY_GRASS, 8, false), 20);
// Vines //
public static final EndFeature DENSE_VINE = new EndFeature("dense_vine", new VineFeature(EndBlocks.DENSE_VINE, 24), 3);