+ lang fix

This commit is contained in:
Glitchlabs
2026-07-04 13:06:27 +02:00
parent ac835a9687
commit 534f56b870
23 changed files with 93 additions and 18 deletions
@@ -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())));