diff --git a/common/mekanism/induction/client/render/RenderWire.java b/common/mekanism/induction/client/render/RenderWire.java index 0b52082c5..4988fb2ad 100644 --- a/common/mekanism/induction/client/render/RenderWire.java +++ b/common/mekanism/induction/client/render/RenderWire.java @@ -26,7 +26,7 @@ import cpw.mods.fml.relauncher.SideOnly; public class RenderWire extends TileEntitySpecialRenderer { private static final ResourceLocation WIRE_TEXTURE = new ResourceLocation(MekanismInduction.DOMAIN, "textures/blocks/" + MekanismInduction.MODEL_TEXTURE_DIRECTORY + "WireSimple.png"); - private static final ResourceLocation INSULATION_TEXTURE = new ResourceLocation(MekanismInduction.DOMAIN, "textures/blocks/" + MekanismInduction.MODEL_TEXTURE_DIRECTORY + "Insulation.png"); + private static final ResourceLocation INSULATION_TEXTURE = new ResourceLocation(MekanismInduction.DOMAIN, "textures/blocks/" + MekanismInduction.MODEL_TEXTURE_DIRECTORY + "InsulationSimple.png"); public static final ModelWire WIRE_MODEL = new ModelWire(); public static final ModelInsulation INSULATION_MODEL = new ModelInsulation(); diff --git a/common/mekanism/induction/common/MekanismInduction.java b/common/mekanism/induction/common/MekanismInduction.java index 0f1c0b3da..338d56269 100644 --- a/common/mekanism/induction/common/MekanismInduction.java +++ b/common/mekanism/induction/common/MekanismInduction.java @@ -150,7 +150,7 @@ public class MekanismInduction implements IModule { try { - itemPartWire = (Item) Class.forName("mekanism.induction.common.wire.ItemPartWire").getDeclaredConstructor(Integer.TYPE).newInstance(getNextItemID()); +// itemPartWire = (Item) Class.forName("mekanism.induction.common.wire.ItemPartWire").getDeclaredConstructor(Integer.TYPE).newInstance(getNextItemID()); Mekanism.logger.fine("Mekanism Induction multipart loaded."); } catch (Exception e) diff --git a/resources/assets/mekanism/textures/blocks/render/InsulationSimple.png b/resources/assets/mekanism/textures/blocks/render/InsulationSimple.png new file mode 100644 index 000000000..68b25d7eb Binary files /dev/null and b/resources/assets/mekanism/textures/blocks/render/InsulationSimple.png differ