Skip to content

Commit

Permalink
fixed pink petals and azaleas being bone mealed by the plant boost ef…
Browse files Browse the repository at this point in the history
…fect

closes #380
  • Loading branch information
Ellpeck committed Dec 5, 2024
1 parent 2aaedcb commit b634c16
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

public class PlantBoostEffect implements IDrainSpotEffect {

public static final Set<Block> EXCEPTIONS = new HashSet<>(List.of(Blocks.GRASS_BLOCK, Blocks.MOSS_BLOCK, Blocks.GLOW_LICHEN, Blocks.SMALL_DRIPLEAF, Blocks.BIG_DRIPLEAF, Blocks.BIG_DRIPLEAF_STEM));
public static final Set<Block> EXCEPTIONS = new HashSet<>(List.of(Blocks.GRASS_BLOCK, Blocks.MOSS_BLOCK, Blocks.GLOW_LICHEN, Blocks.SMALL_DRIPLEAF, Blocks.BIG_DRIPLEAF, Blocks.BIG_DRIPLEAF_STEM, Blocks.PINK_PETALS, Blocks.AZALEA, Blocks.FLOWERING_AZALEA));
public static final ResourceLocation NAME = ResourceLocation.fromNamespaceAndPath(NaturesAura.MOD_ID, "plant_boost");

private int amount;
Expand Down

0 comments on commit b634c16

Please sign in to comment.