Quite a bit of fixes/additions
This commit is contained in:
parent
cec54aa0c8
commit
58902f3901
26 changed files with 43 additions and 52 deletions
|
@ -1,27 +0,0 @@
|
|||
package techreborn.blocks;
|
||||
|
||||
import net.minecraft.block.material.Material;
|
||||
import net.minecraft.block.state.IBlockState;
|
||||
import net.minecraft.util.EnumFacing;
|
||||
import reborncore.common.blocks.BlockMachineBase;
|
||||
import techreborn.client.TechRebornCreativeTab;
|
||||
|
||||
public class BlockHighlyAdvancedMachine extends BlockMachineBase
|
||||
{
|
||||
|
||||
private final String prefix = "techreborn:blocks/machine/machine_blocks/";
|
||||
|
||||
public BlockHighlyAdvancedMachine(Material material)
|
||||
{
|
||||
super();
|
||||
setUnlocalizedName("techreborn.highlyAdvancedMachine");
|
||||
setCreativeTab(TechRebornCreativeTab.instance);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTextureNameFromState(IBlockState BlockStateContainer, EnumFacing facing)
|
||||
{
|
||||
return prefix + "highlyadvancedmachine";
|
||||
}
|
||||
|
||||
}
|
|
@ -21,7 +21,7 @@ import techreborn.init.ModBlocks;
|
|||
public class BlockMachineFrame extends BaseBlock implements ITexturedBlock
|
||||
{
|
||||
public static final String[] types = new String[] { "aluminum", "iron", "bronze", "brass", "steel", "titanium",
|
||||
"machine", "advancedMachine" };
|
||||
"machine", "advancedMachine", "highlyAdvancedMachine" };
|
||||
public PropertyInteger METADATA;
|
||||
|
||||
public BlockMachineFrame(Material material)
|
||||
|
|
|
@ -59,7 +59,7 @@ public class BlockHVTransformer extends BlockLVTransformer
|
|||
@Override
|
||||
public String getBottom()
|
||||
{
|
||||
return prefix + "hv_transformer_bottom";
|
||||
return prefix + "hv_transformer_side";
|
||||
}
|
||||
@Override
|
||||
public void breakBlock(World world, BlockPos pos, IBlockState state)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue