Flora based extractor recipes

This commit is contained in:
drcrazy 2019-02-21 12:23:07 +03:00
parent 398cb9617d
commit 860068b27a
13 changed files with 40 additions and 74 deletions

View file

@ -53,9 +53,7 @@ import java.util.List;
public class BlockFusionCoil extends Block {
public BlockFusionCoil() {
super(Material.IRON);
setHardness(2f);
setSoundType(SoundType.METAL);
super(Block.Properties.create(Material.IRON).hardnessAndResistance(2f).sound(SoundType.METAL));
RebornModelRegistry.registerModel(new ModelCompound(TechReborn.MOD_ID, this, "machines/generators"));
}