aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod
diff options
context:
space:
mode:
authorJordan Byrne <draknyte1@hotmail.com>2017-12-09 20:06:45 +1000
committerJordan Byrne <draknyte1@hotmail.com>2017-12-09 20:06:45 +1000
commit1a0a77b62eb33aa3960f4b673785aed343f57b8a (patch)
treee851517fea85d6dbfc69a272c39adf6ac914ea0a /src/Java/gtPlusPlus/xmod
parent017115aa431efd6a934fff59d5fe39aad3866f58 (diff)
downloadGT5-Unofficial-1a0a77b62eb33aa3960f4b673785aed343f57b8a.tar.gz
GT5-Unofficial-1a0a77b62eb33aa3960f4b673785aed343f57b8a.tar.bz2
GT5-Unofficial-1a0a77b62eb33aa3960f4b673785aed343f57b8a.zip
$ Fixed Sensor recipes not being constructed properly.
+ Added some logging everyone Reinforcements try to spawn.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechComponentAssembler.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechComponentAssembler.java b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechComponentAssembler.java
index c6884275a6..45a24657c6 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechComponentAssembler.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechComponentAssembler.java
@@ -456,7 +456,7 @@ public class GregtechComponentAssembler {
for (ItemStack mCircuitType : oreDictList) {
final ItemStack returnValue = mCircuitType.copy();
returnValue.stackSize = 1;
- ItemStack Input[] = { returnValue, cableStack, returnValue, magrodStack };
+ ItemStack Input[] = { gemStack, cableStack, returnValue, magrodStack };
mAdd[mcount++] = CORE.RA.addComponentMakerRecipe(Input, GT_Values.NF,
ItemList.valueOf("Sensor_" + GT_Values.VN[tier]).get(1), (tier * 40),
((int) GT_Values.V[tier] / 16) * 15);