aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>2018-09-17 03:21:06 +0200
committerbartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>2018-09-17 03:21:06 +0200
commitbe890c12a3bf60ef8d7802064f9602cb58b06f79 (patch)
treefd9d1dcfa07c43210a7965c5213d64cef88766bd /src
parent44f6b8316644d6d4c1289d737c01978aacd74879 (diff)
downloadGT5-Unofficial-be890c12a3bf60ef8d7802064f9602cb58b06f79.tar.gz
GT5-Unofficial-be890c12a3bf60ef8d7802064f9602cb58b06f79.tar.bz2
GT5-Unofficial-be890c12a3bf60ef8d7802064f9602cb58b06f79.zip
added description for the LESU
fixed derps
Diffstat (limited to 'src')
-rw-r--r--src/main/java/com/github/bartimaeusnek/bartworks/common/loaders/RecipeLoader.java10
-rw-r--r--src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/GT_MetaTileEntity_EnergyDistributor.java6
-rw-r--r--src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/GT_TileEntity_LESU.java12
3 files changed, 19 insertions, 9 deletions
diff --git a/src/main/java/com/github/bartimaeusnek/bartworks/common/loaders/RecipeLoader.java b/src/main/java/com/github/bartimaeusnek/bartworks/common/loaders/RecipeLoader.java
index 50de3bd0f0..54bcf4fe5c 100644
--- a/src/main/java/com/github/bartimaeusnek/bartworks/common/loaders/RecipeLoader.java
+++ b/src/main/java/com/github/bartimaeusnek/bartworks/common/loaders/RecipeLoader.java
@@ -156,15 +156,15 @@ public class RecipeLoader implements Runnable {
});
- Materials[] cables = {Materials.Lead, Materials.Tin,Materials.AnnealedCopper,Materials.Gold,Materials.Aluminium,Materials.Tungsten, Materials.VanadiumGallium,Materials.Naquadah, Materials.Naquadah, Materials.Superconductor};
- Materials[] hulls = {Materials.WroughtIron, Materials.Steel,Materials.Aluminium,Materials.StainlessSteel,Materials.Titanium,Materials.TungstenSteel, Materials.Chrome,Materials.Iridium, Materials.Osmium, Materials.NaquadahAlloy};
+ Materials[] cables = {Materials.Lead, Materials.Tin,Materials.AnnealedCopper,Materials.Gold,Materials.Aluminium,Materials.Tungsten, Materials.VanadiumGallium,Materials.Naquadah, Materials.NaquadahAlloy, Materials.Superconductor};
+ Materials[] hulls = {Materials.WroughtIron, Materials.Steel,Materials.Aluminium,Materials.StainlessSteel,Materials.Titanium,Materials.TungstenSteel, Materials.Chrome,Materials.Iridium, Materials.Osmium, Materials.Naquadah};
for (int i = 0; i < GT_Values.VN.length; i++) {
try{
Materials cable = cables[i];
Materials hull = hulls[i];
ItemStack machinehull = ItemList.MACHINE_HULLS[i].get(1L);
- GT_ModHandler.addCraftingRecipe(
+ GT_ModHandler.addCraftingRecipe(
new GT_MetaTileEntity_EnergyDistributor(ConfigHandler.IDOffset+1+i,"Energy Distributor "+GT_Values.VN[i], "Energy Distributor "+GT_Values.VN[i], i, "Splits Amperage into several Sides").getStackForm(1L),
bitsd,
new Object[]{
@@ -175,8 +175,8 @@ public class RecipeLoader implements Runnable {
'P', GT_OreDictUnificator.get(OrePrefixes.plate,hull,1L),
'C', machinehull
});
- }catch(ArrayIndexOutOfBoundsException e){
- //e.printStackTrace();
+ }catch(ArrayIndexOutOfBoundsException e){
+ //e.printStackTrace();
}
}
}
diff --git a/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/GT_MetaTileEntity_EnergyDistributor.java b/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/GT_MetaTileEntity_EnergyDistributor.java
index fd5e1a60bb..a122310393 100644
--- a/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/GT_MetaTileEntity_EnergyDistributor.java
+++ b/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/GT_MetaTileEntity_EnergyDistributor.java
@@ -34,16 +34,16 @@ public class GT_MetaTileEntity_EnergyDistributor extends GT_MetaTileEntity_Trans
}
public long maxAmperesOut() {
- return 64*5;
+ return 320;
}
public long maxAmperesIn() {
- return 256;
+ return 320;
}
@Override
public long maxEUStore() {
- return 512L + (GT_Values.V[this.mTier ] * 256L);
+ return 512L + (GT_Values.V[this.mTier ] * 320L);
}
public String[] getDescription() {
diff --git a/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/GT_TileEntity_LESU.java b/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/GT_TileEntity_LESU.java
index 0441e7ebce..ef60d24828 100644
--- a/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/GT_TileEntity_LESU.java
+++ b/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/GT_TileEntity_LESU.java
@@ -2,8 +2,10 @@ package com.github.bartimaeusnek.bartworks.common.tileentities;
import com.github.bartimaeusnek.bartworks.MainMod;
import com.github.bartimaeusnek.bartworks.client.gui.GT_GUIContainer_LESU;
+import com.github.bartimaeusnek.bartworks.common.ConfigHandler;
import com.github.bartimaeusnek.bartworks.common.loaders.ItemRegistry;
import com.github.bartimaeusnek.bartworks.server.container.GT_Container_LESU;
+import com.github.bartimaeusnek.bartworks.util.ChatColorHelper;
import com.github.bartimaeusnek.bartworks.util.ConnectedBlocksChecker;
import cpw.mods.fml.common.FMLCommonHandler;
import cpw.mods.fml.relauncher.Side;
@@ -138,7 +140,15 @@ public class GT_TileEntity_LESU extends GT_MetaTileEntity_MultiBlockBase {
@Override
public String[] getDescription() {
return new String[]{
-
+ "Controller Block for the GT2-Styled L.E.S.U.",
+ "Size: ANY",
+ "Storage per LESU Casing: " + this.energyPerCell+"EU",
+ "Output EU: LESU Casings amount"+
+ "Input EU: Next Voltage Tier to Output EU",
+ "Input/Output Amps can be configured via 4 Circuits in GUI",
+ "Output Side has a dot on it.",
+ ChatColorHelper.RED+"Only one Controller allowed, no Wallsharing!",
+ "Added by bartimaeusnek via BartWorks"
};
}