Skip to content

Commit

Permalink
Changing Some Stuff
Browse files Browse the repository at this point in the history
Signed-off-by: Type-32 <[email protected]>
  • Loading branch information
Type-32 committed Jul 25, 2024
1 parent 8959fcf commit 28d7df3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@


public class ModBlocks {

static {
// Set that all registered Items and Blocks defaults under this Mod's creative tabs
Main.REGISTRATE.defaultCreativeTab(ModCreativeModTabs.MOD_TAB.getKey());
}

public static final BlockEntry<DecomponentalizerBlock> DECOMPONENTALIZER = Main.REGISTRATE.block("decomponentalizer", DecomponentalizerBlock::new)
.initialProperties(SharedProperties::softMetal)
.properties(p -> p.mapColor(MapColor.COLOR_GRAY))
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
import com.tterrag.registrate.util.entry.FluidEntry;

public class ModFluids {
static {
// Set that all registered Items and Blocks defaults under this Mod's creative tabs
Main.REGISTRATE.defaultCreativeTab(ModCreativeModTabs.MOD_TAB.getKey());
}

public static final FluidEntry<? extends VirtualFluid>
MOLTEN_COPPER = Main.REGISTRATE.extendedVirtualFluid("molten_copper", MoltenCopperFluid::new)
.lang("Molten Copper")
Expand Down

0 comments on commit 28d7df3

Please sign in to comment.