Large amount of fluid work
This commit is contained in:
parent
1e52477b9e
commit
83bf6add1e
20 changed files with 52 additions and 124 deletions
|
@ -40,6 +40,7 @@ import techreborn.blocks.misc.BlockRubberPlankSlab;
|
|||
import techreborn.blocks.misc.BlockRubberPlankStair;
|
||||
import techreborn.blocks.misc.BlockRubberSapling;
|
||||
import techreborn.config.ConfigTechReborn;
|
||||
import techreborn.init.ModFluids;
|
||||
import techreborn.init.TRArmorMaterial;
|
||||
import techreborn.init.TRContent;
|
||||
import techreborn.init.TRContent.*;
|
||||
|
@ -69,6 +70,7 @@ import techreborn.items.tool.vanilla.*;
|
|||
import techreborn.utils.InitUtils;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.function.Consumer;
|
||||
|
||||
/**
|
||||
* @author drcrazy
|
||||
|
@ -80,6 +82,7 @@ public class ModRegistry {
|
|||
public static void setupShit(){
|
||||
registerBlocks();
|
||||
registerItems();
|
||||
registerFluids();
|
||||
}
|
||||
|
||||
public static void registerBlocks() {
|
||||
|
@ -208,4 +211,8 @@ public class ModRegistry {
|
|||
|
||||
TechReborn.LOGGER.debug("TechReborns Items Loaded");
|
||||
}
|
||||
|
||||
public static void registerFluids() {
|
||||
Arrays.stream(ModFluids.values()).forEach(ModFluids::register);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue