aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/registration
diff options
context:
space:
mode:
authorAlkalus <draknyte1@hotmail.com>2017-09-09 21:10:23 +1000
committerAlkalus <draknyte1@hotmail.com>2017-09-09 21:10:23 +1000
commit3b15de7e6090b0b60dd77311d8e599c7dccd9326 (patch)
treecd72c71d0f57f2733285a44b8d46659b239967c5 /src/Java/gtPlusPlus/xmod/gregtech/registration
parentdb713aab91e567051de587dcb9aeebf7d0b0b308 (diff)
downloadGT5-Unofficial-3b15de7e6090b0b60dd77311d8e599c7dccd9326.tar.gz
GT5-Unofficial-3b15de7e6090b0b60dd77311d8e599c7dccd9326.tar.bz2
GT5-Unofficial-3b15de7e6090b0b60dd77311d8e599c7dccd9326.zip
- Removed Superconductors and Conduction Nodes.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/registration')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechConduits.java10
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechSuperConductionPoint.java7
2 files changed, 8 insertions, 9 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechConduits.java b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechConduits.java
index fa2d028276..1fea675c2e 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechConduits.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechConduits.java
@@ -56,9 +56,9 @@ public class GregtechConduits {
wireFactory("RedstoneAlloy", 32, 30645, 0, 2, 1);
}
- superConductorFactory(GT_Materials.Superconductor, 524288, 30660, 0, 0, 8);
+ //superConductorFactory(GT_Materials.Superconductor, 524288, 30660, 0, 0, 8);
if (LoadedMods.Thaumcraft){
- superConductorFactory(GT_Materials.Void, 512, 30661, 0, 0, 8);
+ //superConductorFactory(GT_Materials.Void, 512, 30661, 0, 0, 8);
}
@@ -189,16 +189,16 @@ public class GregtechConduits {
V = 0;
}
//makeWires(T, ID, 2L, 4L, 2L, GT_Values.V[V], true, false);
- makeSuperConductors(T, ID, insulatedLoss, uninsulatedLoss, Amps, GT_Values.V[V], true, false);
+ //makeSuperConductors(T, ID, insulatedLoss, uninsulatedLoss, Amps, GT_Values.V[V], true, false);
//makeWires(T, ID, bEC ? 2L : 2L, bEC ? 4L : 4L, 2L, gregtech.api.enums.GT_Values.V[V], true, false);
}
- private static void makeSuperConductors(final GT_Materials aMaterial, final int aStartID, final long aLossInsulated, final long aLoss, final long aAmperage, final long aVoltage, final boolean aInsulatable, final boolean aAutoInsulated)
+ /*private static void makeSuperConductors(final GT_Materials aMaterial, final int aStartID, final long aLossInsulated, final long aLoss, final long aAmperage, final long aVoltage, final boolean aInsulatable, final boolean aAutoInsulated)
{
Utils.LOG_WARNING("Gregtech5u Content | Registered "+aMaterial.name() +" as a new Super Conductor.");
registerOre(GregtechOrePrefixes.type2, aMaterial, new GregtechMetaPipeEntity_SuperConductor(aStartID + 5, "wire." + aMaterial.name().toLowerCase() + ".16", "16x " + aMaterial.mDefaultLocalName + " Wire", 1.0F, aMaterial, aLoss, 16L * aAmperage, aVoltage, false, !aAutoInsulated).getStackForm(1L));
- }
+ }*/
private static boolean registerOre(final GregtechOrePrefixes aPrefix, final Object aMaterial, final ItemStack aStack) {
return GT_OreDictUnificator.registerOre(aPrefix.get(aMaterial), aStack);
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechSuperConductionPoint.java b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechSuperConductionPoint.java
index 35b7050300..913b13718f 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechSuperConductionPoint.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechSuperConductionPoint.java
@@ -2,13 +2,12 @@ package gtPlusPlus.xmod.gregtech.registration.gregtech;
import gtPlusPlus.core.util.Utils;
import gtPlusPlus.xmod.gregtech.api.enums.GregtechItemList;
-import gtPlusPlus.xmod.gregtech.common.tileentities.generators.GregtechMetaTileEntitySuperCondensor;
public class GregtechSuperConductionPoint {
public static void run() {
if (gtPlusPlus.core.lib.LoadedMods.Gregtech) {
- Utils.LOG_INFO("Gregtech5u Content | Registering Super Conductor Input Node.");
+ //Utils.LOG_INFO("Gregtech5u Content | Registering Super Conductor Input Node.");
run1();
}
@@ -16,8 +15,8 @@ public class GregtechSuperConductionPoint {
private static void run1() {
// Steam Condensors
- GregtechItemList.SuperConductorInputNode.set(new GregtechMetaTileEntitySuperCondensor(811,
- "superconductor.01.input.single", "Power Phase Shifting Station", 8).getStackForm(1L));
+ //GregtechItemList.SuperConductorInputNode.set(new GregtechMetaTileEntitySuperCondensor(811,
+ // "superconductor.01.input.single", "Power Phase Shifting Station", 8).getStackForm(1L));
}
}