mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
Add more custom machine options. Now custom machines can receive neutron flux and heat through the "Neutron Flux Receiver" and "Heat receiver" blocks within the structure. The recipe has also added corresponding configurable neutron flux and heat requirements, and can also be configured to generate/absorb contamination
10 lines
210 B
Java
10 lines
210 B
Java
package com.hbm.blocks.machine;
|
|
|
|
import net.minecraft.block.material.Material;
|
|
|
|
public class BlockCMFlux extends BlockPillar{
|
|
public BlockCMFlux(Material mat, String top) {
|
|
super(mat, top);
|
|
}
|
|
}
|