Skip to content

Commit

Permalink
capitalization consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
yurisuika committed Feb 28, 2024
1 parent a06c6bf commit 46ace0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/dev/yurisuika/blossom/Blossom.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@ public class Blossom {
public static final DeferredRegister<ParticleType<?>> PARTICLES = DeferredRegister.create(ForgeRegistries.PARTICLE_TYPES, "blossom");

public static final RegistryObject<Block> FRUITING_OAK_LEAVES = register("fruiting_oak_leaves", () -> new FruitingLeavesBlock(Blocks.OAK_LEAVES, Items.APPLE, AbstractBlock.Settings.of(Material.LEAVES)
.strength(0.2f)
.strength(0.2F)
.ticksRandomly()
.sounds(BlockSoundGroup.GRASS)
.nonOpaque()
.allowsSpawning(BlocksInvoker::invokeCanSpawnOnLeaves)
.suffocates(BlocksInvoker::invokeNever)
.blockVision(BlocksInvoker::invokeNever)), new Item.Settings());
public static final RegistryObject<Block> FLOWERING_OAK_LEAVES = register("flowering_oak_leaves", () -> new FloweringLeavesBlock(Blocks.OAK_LEAVES, Blossom.FRUITING_OAK_LEAVES.get(), AbstractBlock.Settings.of(Material.LEAVES)
.strength(0.2f)
.strength(0.2F)
.ticksRandomly()
.sounds(BlockSoundGroup.GRASS)
.nonOpaque()
Expand Down

0 comments on commit 46ace0f

Please sign in to comment.