Skip to content

Commit

Permalink
make blockprops final, whatever
Browse files Browse the repository at this point in the history
  • Loading branch information
62832 committed Jun 8, 2022
1 parent 6df9e3c commit 881d738
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/ninety/megacells/block/MEGABlocks.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public static List<BlockDefinition<?>> getBlocks() {
return Collections.unmodifiableList(BLOCKS);
}

private static BlockBehaviour.Properties props = BlockBehaviour.Properties.of(Material.METAL)
private static final BlockBehaviour.Properties props = BlockBehaviour.Properties.of(Material.METAL)
.strength(2.2f, 11.0f)
.sound(SoundType.METAL);

Expand Down

0 comments on commit 881d738

Please sign in to comment.