mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-12-22 06:59:22 +01:00
fixed pink petals and azaleas being bone mealed by the plant boost effect
closes #380
This commit is contained in:
parent
2aaedcb04e
commit
b634c16c01
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ import java.util.Set;
|
|||
|
||||
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;
|
||||
|
|
Loading…
Reference in a new issue