TechReborn/src/main/java/techreborn/blocks/BlockFusionCoil.java
modmuss50 7e7ad74203 Squashed commit of the following:
commit 00d9c08c78680aba0310febfce5f42ccdb873eb6
Author: modmuss50 <modmuss50@gmail.com>
Date:   Fri Jan 22 13:38:27 2016 +0000

    Rename to fix spelling issue

commit cf780e5f6dc548b64da8e4e2f24f38377b692c5c
Author: modmuss50 <modmuss50@gmail.com>
Date:   Fri Jan 22 13:27:15 2016 +0000

    Update to new JSON-Destoryer version

commit ef3c8636242a54787d53cef9dda373818030d991
Author: modmuss50 <modmuss50@gmail.com>
Date:   Wed Jan 20 17:27:41 2016 +0000

    Update to new json destroyer
2016-01-22 13:39:20 +00:00

22 lines
564 B
Java

package techreborn.blocks;
import net.minecraft.block.material.Material;
import net.minecraft.block.state.IBlockState;
import net.minecraft.util.EnumFacing;
public class BlockFusionCoil extends BlockMachineBase {
public BlockFusionCoil(Material material) {
super(material);
setUnlocalizedName("techreborn.fusioncoil");
}
private final String prefix = "techreborn:blocks/machine/";
@Override
public String getTextureNameFromState(IBlockState blockState, EnumFacing facing) {
return prefix + "fusion_coil";
}
}