From 881d738c51867a3eee5b6cb92c0d51941124ed93 Mon Sep 17 00:00:00 2001 From: 90 <90@national.shitposting.agency> Date: Wed, 8 Jun 2022 11:30:50 +0100 Subject: [PATCH] make blockprops final, whatever --- src/main/java/ninety/megacells/block/MEGABlocks.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/ninety/megacells/block/MEGABlocks.java b/src/main/java/ninety/megacells/block/MEGABlocks.java index 373c04be..1de4c1fe 100644 --- a/src/main/java/ninety/megacells/block/MEGABlocks.java +++ b/src/main/java/ninety/megacells/block/MEGABlocks.java @@ -39,7 +39,7 @@ public static List> 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);