Remove old cables

This commit is contained in:
modmuss50 2017-06-12 10:55:26 +01:00
parent 007e8714fa
commit 624d8fb93a
No known key found for this signature in database
GPG key ID: 203A5ED4D3E48BEA
32 changed files with 53 additions and 1733 deletions

View file

@ -32,9 +32,9 @@ import reborncore.common.util.OreUtil;
import reborncore.common.util.StringUtils;
import techreborn.blocks.BlockMachineCasing;
import techreborn.blocks.BlockMachineFrame;
import techreborn.blocks.cable.BlockCable;
import techreborn.init.IC2Duplicates;
import techreborn.items.*;
import techreborn.parts.powerCables.ItemStandaloneCables;
/**
* Created by Prospector
@ -58,7 +58,7 @@ public abstract class RecipeMethods {
} else if (type == Type.PART) {
return ItemParts.getPartByName(name, count);
} else if (type == Type.CABLE) {
return ItemStandaloneCables.getCableByName(name, count);
return BlockCable.getCableByName(name, count);
} else if (type == Type.MACHINE_FRAME) {
return BlockMachineFrame.getFrameByName(name, count);
} else if (type == Type.MACHINE_CASING) {