Awareness block #53

Merged
BlakeRain merged 13 commits from BlakeRain/utamacraft:27-cc-awareness into main 2024-01-18 12:03:14 +00:00
Showing only changes of commit 86c10fa58e - Show all commits

View File

@ -39,7 +39,7 @@ public class ModBlocks {
.strength(12.0f)
.requiresCorrectToolForDrops()));
public static final RegistryObject<Block> INSOLATOR = registerBlock("insolator", InsolatorBlock::new);
public static final RegistryObject<Block> AWARENESS_BLOCK = registerBlock("awareness", AwarenessBlock::new);
public static final RegistryObject<Block> AWARENESS_BLOCK = registerBlock("awareness_block", AwarenessBlock::new);
private static <T extends Block> RegistryObject<T> registerBlock(String name, Supplier<T> block) {
RegistryObject<T> registered_block = BLOCKS.register(name, block);