Skip to content

Commit

Permalink
Fix Jacaranda Bushes Missing Collision Closes #22
Browse files Browse the repository at this point in the history
  • Loading branch information
JT122406 committed Jul 30, 2024
1 parent 79a9665 commit 9970d38
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# 1.0.2-Beta
- Fix Golden Apple from Green Apple Recipe overriding Vanilla Recipe
- Fix Jacaranda Bushes Missing Collision

# 1.0.1-Beta
- Allow BoneMealing Allium Flower Bushes into Tall Alliums
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,10 @@ public class BWGBlocks {

public static final Supplier<BWGBerryBush> BLUEBERRY_BUSH = registerBlock("blueberry_bush", () -> new BWGBerryBush(() -> BWGItems.BLUEBERRIES, true));
//public static final Supplier<NightshadeBerryBush> NIGHTSHADE_BERRY_BUSH = registerBlock("nightshade_berry_bush", NightshadeBerryBush::new);
public static final Supplier<FloweringBushBlock> FLOWERING_JACARANDA_BUSH = registerBlockItem("flowering_jacaranda_bush", () -> new FloweringBushBlock(BlockBehaviour.Properties.copy(Blocks.SWEET_BERRY_BUSH)));
public static final PottedBlock JACARANDA_BUSH = createPottedVariant("jacaranda_bush", () -> new FlowerableBushBlock(BlockBehaviour.Properties.copy(Blocks.SWEET_BERRY_BUSH), FLOWERING_JACARANDA_BUSH));
public static final Supplier<FloweringBushBlock> FLOWERING_INDIGO_JACARANDA_BUSH = registerBlockItem("flowering_indigo_jacaranda_bush", () -> new FloweringBushBlock(BlockBehaviour.Properties.copy(Blocks.SWEET_BERRY_BUSH)));
public static final PottedBlock INDIGO_JACARANDA_BUSH = createPottedVariant("indigo_jacaranda_bush", () -> new FlowerableBushBlock(BlockBehaviour.Properties.copy(Blocks.SWEET_BERRY_BUSH), FLOWERING_INDIGO_JACARANDA_BUSH));
public static final Supplier<FloweringBushBlock> FLOWERING_JACARANDA_BUSH = registerBlockItem("flowering_jacaranda_bush", () -> new FloweringBushBlock(BlockBehaviour.Properties.copy(Blocks.AZALEA)));
public static final PottedBlock JACARANDA_BUSH = createPottedVariant("jacaranda_bush", () -> new FlowerableBushBlock(BlockBehaviour.Properties.copy(Blocks.AZALEA), FLOWERING_JACARANDA_BUSH));
public static final Supplier<FloweringBushBlock> FLOWERING_INDIGO_JACARANDA_BUSH = registerBlockItem("flowering_indigo_jacaranda_bush", () -> new FloweringBushBlock(BlockBehaviour.Properties.copy(Blocks.AZALEA)));
public static final PottedBlock INDIGO_JACARANDA_BUSH = createPottedVariant("indigo_jacaranda_bush", () -> new FlowerableBushBlock(BlockBehaviour.Properties.copy(Blocks.AZALEA), FLOWERING_INDIGO_JACARANDA_BUSH));
public static final PottedBlock HYDRANGEA_BUSH = createPottedVariant("hydrangea_bush", HydrangeaBushBlock::new);
public static final Supplier<BushBlock> HYDRANGEA_HEDGE = registerBlockItem("hydrangea_hedge", HydrangeaHedgeBlock::new);
public static final PottedBlock SHRUB = createPottedVariant("shrub", () -> new ShrubBlock(null));
Expand Down

0 comments on commit 9970d38

Please sign in to comment.