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 7903466 commit 63d9014
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 @@ -54,7 +54,7 @@ public class Blossom {

public static final RegistryObject<Block> FRUITING_OAK_LEAVES = register("fruiting_oak_leaves", () -> new FruitingLeavesBlock(Blocks.OAK_LEAVES, Items.APPLE, AbstractBlock.Settings.create()
.mapColor(MapColor.DARK_GREEN)
.strength(0.2f)
.strength(0.2F)
.ticksRandomly()
.sounds(BlockSoundGroup.GRASS)
.nonOpaque()
Expand All @@ -66,7 +66,7 @@ public class Blossom {
.solidBlock(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.create()
.mapColor(MapColor.DARK_GREEN)
.strength(0.2f)
.strength(0.2F)
.ticksRandomly()
.sounds(BlockSoundGroup.GRASS)
.nonOpaque()
Expand Down

0 comments on commit 63d9014

Please sign in to comment.