+ lang fix
This commit is contained in:
@@ -17,6 +17,12 @@ public class ModBlocks {
|
||||
public static final DeferredRegister.Blocks BLOCKS =
|
||||
DeferredRegister.createBlocks(Ornamentum.MODID);
|
||||
|
||||
public static final DeferredBlock<Block> MESH_IRON = registerBlock("mesh_iron",
|
||||
() -> new Block(BlockBehaviour.Properties.ofFullCopy(Blocks.IRON_BLOCK)
|
||||
.strength(5.0f, 6.0f)
|
||||
.noOcclusion()
|
||||
));
|
||||
|
||||
//POOL TILES
|
||||
|
||||
public static final DeferredBlock<Block> POOL_TILES = registerBlock("pool_tiles",
|
||||
@@ -73,10 +79,11 @@ public class ModBlocks {
|
||||
|
||||
public static final DeferredBlock<Block> LIME_GLOW_BLOCK = registerBlock("lime_glow_block",
|
||||
() -> new Block(BlockBehaviour.Properties.ofFullCopy(Blocks.IRON_BLOCK)
|
||||
.emissiveRendering(((blockState, blockGetter, blockPos) -> true))
|
||||
.emissiveRendering((state, level, pos) -> true)
|
||||
.lightLevel(blockstate -> 15)
|
||||
.noOcclusion())
|
||||
);
|
||||
.hasPostProcess((bs, br, bp) -> true)
|
||||
.noOcclusion()
|
||||
));
|
||||
|
||||
public static final DeferredBlock<Block> WHITE_GLOW_BLOCK = registerBlock("white_glow_block",
|
||||
() -> new GlowGlassBlock(BlockBehaviour.Properties.ofFullCopy(LIME_GLOW_BLOCK.get())));
|
||||
|
||||
Reference in New Issue
Block a user