From 777424969b03d4eca8ceec52842ce3253cda5571 Mon Sep 17 00:00:00 2001 From: "Joseph T. McQuigg" Date: Wed, 31 Jul 2024 20:47:06 -0400 Subject: [PATCH] Add Huge Mushroom growers to mushrooms blocks. Closes #29 Signed-off-by: Joseph T. McQuigg --- CHANGELOG.md | 1 + .../biomeswevegone/world/level/block/BWGBlocks.java | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 52982ef09..47b3c0a77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ - Fix a bunch of Leaves drops - Remove Extra ModPlatform Classes, Add getConfigPath to PlatformHandler - Custom Mushroom Sizes +- Add Huge Mushroom growers to mushrooms blocks # 1.0.2-Beta - Fix Golden Apple from Green Apple Recipe overriding Vanilla Recipe diff --git a/Common/src/main/java/net/potionstudios/biomeswevegone/world/level/block/BWGBlocks.java b/Common/src/main/java/net/potionstudios/biomeswevegone/world/level/block/BWGBlocks.java index 2d225e48f..74920ab90 100644 --- a/Common/src/main/java/net/potionstudios/biomeswevegone/world/level/block/BWGBlocks.java +++ b/Common/src/main/java/net/potionstudios/biomeswevegone/world/level/block/BWGBlocks.java @@ -111,9 +111,9 @@ public class BWGBlocks { // public static final Supplier SOUL_SHROOM_BLOCK = registerBlockItem("soul_shroom_block", () -> new HugeMushroomBlock(BlockBehaviour.Properties.of().mapColor(MapColor.DIRT).sound(SoundType.STEM).strength(0.2F).lightLevel((state) -> 12))); // public static final Supplier DEATH_CAP_MUSHROOM_BLOCK = registerBlockItem("death_cap_mushroom_block", () -> new HugeMushroomBlock(BlockBehaviour.Properties.of().mapColor(MapColor.DIRT).sound(SoundType.STEM).strength(0.2F).lightLevel((state) -> 12))); - public static final Supplier GREEN_MUSHROOM = registerBlockItem("green_mushroom", () -> new BWGMushroomBlock(BlockBehaviour.Properties.of().noCollission().mapColor(MapColor.DIRT).sound(SoundType.STEM).strength(0.2F), BWGBlockTags.BWG_MUSHROOM_PLACEABLE, BWGOverworldVegetationConfiguredFeatures.GREEN_MUSHROOM, Block.box(1.0, 0.0, 1.0, 15.0, 13.0, 15.0))); - public static final Supplier WEEPING_MILKCAP = registerBlockItem("weeping_milkcap", () -> new BWGMushroomBlock(BlockBehaviour.Properties.of().noCollission().mapColor(MapColor.DIRT).sound(SoundType.STEM).strength(0.2F), BWGBlockTags.BWG_MUSHROOM_PLACEABLE, BWGOverworldVegetationConfiguredFeatures.WEEPING_MILKCAP, Block.box(3.0, 0.0, 3.0, 14.0, 6.0, 14.0))); - public static final Supplier WOOD_BLEWIT = registerBlockItem("wood_blewit", () -> new BWGMushroomBlock(BlockBehaviour.Properties.of().noCollission().mapColor(MapColor.DIRT).sound(SoundType.STEM).strength(0.2F), BWGBlockTags.BWG_MUSHROOM_PLACEABLE, BWGOverworldVegetationConfiguredFeatures.WOOD_BLEWIT, Block.box(5.0, 0.0, 5.0, 11.0, 7.0, 11.0))); + public static final Supplier GREEN_MUSHROOM = registerBlockItem("green_mushroom", () -> new BWGMushroomBlock(BlockBehaviour.Properties.of().noCollission().mapColor(MapColor.DIRT).sound(SoundType.STEM).strength(0.2F), BWGBlockTags.BWG_MUSHROOM_PLACEABLE, BWGOverworldVegetationConfiguredFeatures.HUGE_GREEN_MUSHROOM1, Block.box(1.0, 0.0, 1.0, 15.0, 13.0, 15.0))); + public static final Supplier WEEPING_MILKCAP = registerBlockItem("weeping_milkcap", () -> new BWGMushroomBlock(BlockBehaviour.Properties.of().noCollission().mapColor(MapColor.DIRT).sound(SoundType.STEM).strength(0.2F), BWGBlockTags.BWG_MUSHROOM_PLACEABLE, BWGOverworldVegetationConfiguredFeatures.HUGE_WEEPING_MILKCAP1, Block.box(3.0, 0.0, 3.0, 14.0, 6.0, 14.0))); + public static final Supplier WOOD_BLEWIT = registerBlockItem("wood_blewit", () -> new BWGMushroomBlock(BlockBehaviour.Properties.of().noCollission().mapColor(MapColor.DIRT).sound(SoundType.STEM).strength(0.2F), BWGBlockTags.BWG_MUSHROOM_PLACEABLE, BWGOverworldVegetationConfiguredFeatures.HUGE_WOOD_BLEWIT1, Block.box(5.0, 0.0, 5.0, 11.0, 7.0, 11.0))); /** Alliums */ public static final Supplier TALL_ALLIUM = registerTallFlower("tall_allium", MapColor.COLOR_PURPLE, BWGTreeGrowers.GIANT_ALLIUM);