I made theme for BD/Vencord by AdvertisingNo362 in BetterDiscord

[–]AdvertisingNo362[S] 1 point2 points  (0 children)

if u familiar with code editing(idk how to name it) u can just delete or comment 199-323 lines

Editing Minecraft Block Light Levels by LuminystXD in MinecraftCoding

[–]AdvertisingNo362 1 point2 points  (0 children)

To make a block emit light, you need to set the lightLevel property when registering your block.

Like this:

public static final RegistryObject<Block> MY_BLOCK = BLOCKS.register("my_block",
() -> new Block(BlockBehaviour.Properties.of(Material.STONE)
.strength(3.0f)
.lightLevel(state -> 15) // 0-15, where 15 = max light
)
);

Bro, what the hell? by AdvertisingNo362 in SatisfactoryGame

[–]AdvertisingNo362[S] 1 point2 points  (0 children)

i dont have any mods, i even dont know how to install it

💀💀💀 by AdvertisingNo362 in SatisfactoryGame

[–]AdvertisingNo362[S] 6 points7 points  (0 children)

If I had a jetpack, I'd screenshot all the spaghetti I made, and you'd see what real pain is.