aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMartin Robertz <dream-master@gmx.net>2022-10-08 15:05:14 +0200
committerGitHub <noreply@github.com>2022-10-08 15:05:14 +0200
commit56e23d871d01a027dad7864504fe4ac81f0e254e (patch)
tree6209a5dd3b974e93f119887c4cc6ef3ab8b1686d /src
parenteb704581f1ad7a8ab85b09acf718f8585150da74 (diff)
parentb3841d2db9b62b84f6ef620a0eea8d6ae850d8c9 (diff)
downloadGT5-Unofficial-56e23d871d01a027dad7864504fe4ac81f0e254e.tar.gz
GT5-Unofficial-56e23d871d01a027dad7864504fe4ac81f0e254e.tar.bz2
GT5-Unofficial-56e23d871d01a027dad7864504fe4ac81f0e254e.zip
Merge pull request #105 from GTNewHorizons/inductor
replace coils in high tier circuits with inductor smd
Diffstat (limited to 'src')
-rw-r--r--src/main/java/com/github/technus/tectech/compatibility/dreamcraft/DreamCraftRecipeLoader.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/main/java/com/github/technus/tectech/compatibility/dreamcraft/DreamCraftRecipeLoader.java b/src/main/java/com/github/technus/tectech/compatibility/dreamcraft/DreamCraftRecipeLoader.java
index efc2dfaa7d..b2abfe8d7e 100644
--- a/src/main/java/com/github/technus/tectech/compatibility/dreamcraft/DreamCraftRecipeLoader.java
+++ b/src/main/java/com/github/technus/tectech/compatibility/dreamcraft/DreamCraftRecipeLoader.java
@@ -2939,7 +2939,9 @@ public class DreamCraftRecipeLoader {
new Object[] {
GT_OreDictUnificator.get(OrePrefixes.frameGt, Materials.Tritanium, 2),
ItemList.Circuit_Wetwaresupercomputer.get(2L),
- ItemList.ZPM_Coil.get(16L),
+ new ItemStack[] {
+ ItemList.Circuit_Parts_InductorASMD.get(16L), ItemList.Circuit_Parts_InductorXSMD.get(4L)
+ },
new ItemStack[] {
ItemList.Circuit_Parts_CapacitorASMD.get(16L), ItemList.Circuit_Parts_CapacitorXSMD.get(4L)
},
@@ -3009,7 +3011,9 @@ public class DreamCraftRecipeLoader {
new Object[] {
GT_OreDictUnificator.get(OrePrefixes.frameGt, Materials.Tritanium, 4L),
ItemList.Circuit_Biowaresupercomputer.get(2L),
- ItemList.UV_Coil.get(16L),
+ new ItemStack[] {
+ ItemList.Circuit_Parts_InductorASMD.get(24L), ItemList.Circuit_Parts_InductorXSMD.get(6L)
+ },
new ItemStack[] {
ItemList.Circuit_Parts_TransistorASMD.get(24L), ItemList.Circuit_Parts_TransistorXSMD.get(6L)
},