Skip to content

Instantly share code, notes, and snippets.

View SoundsoftheSun's full-sized avatar

SoundsoftheSun

View GitHub Profile
@SoundsoftheSun
SoundsoftheSun / +mymodBlocks.java
Last active November 3, 2025 16:55
Horizontal Directional Block Entity Minecraft Fabric 1.21.10
// register the block in your modBlocks class
public static final Block DEBUG_BLOCK = register(
"debug_block",
DebugBlock::new,
AbstractBlock.Settings.create().nonOpaque(),
true
);