Skip to content

Commit

Permalink
Fix earlygame wires (#3287)
Browse files Browse the repository at this point in the history
Co-authored-by: Martin Robertz <dream-master@gmx.net>
  • Loading branch information
FourIsTheNumber and Dream-Master committed Sep 26, 2024
1 parent c333c46 commit 05f8dd4
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ public void registerOre(OrePrefixes aPrefix, Materials aMaterial, String aOreDic
GTValues.RA.stdBuilder()
.itemInputs(
GTOreDictUnificator.get(OrePrefixes.ingot, Materials.Rubber, 2L),
GTOreDictUnificator.get(OrePrefixes.cableGt01, aMaterial, 1L))
GTOreDictUnificator.get(OrePrefixes.wireGt01, aMaterial, 1L))
.itemOutputs(GTOreDictUnificator.get(OrePrefixes.cableGt01, aMaterial, 1L))
.duration(5 * SECONDS)
.eut(8)
Expand All @@ -321,7 +321,7 @@ public void registerOre(OrePrefixes aPrefix, Materials aMaterial, String aOreDic
GTValues.RA.stdBuilder()
.itemInputs(
GTOreDictUnificator.get(OrePrefixes.ingot, Materials.Rubber, 2L),
GTOreDictUnificator.get(OrePrefixes.cableGt02, aMaterial, 1L))
GTOreDictUnificator.get(OrePrefixes.wireGt02, aMaterial, 1L))
.itemOutputs(GTOreDictUnificator.get(OrePrefixes.cableGt02, aMaterial, 1L))
.duration(10 * SECONDS)
.eut(16)
Expand All @@ -330,7 +330,7 @@ public void registerOre(OrePrefixes aPrefix, Materials aMaterial, String aOreDic
GTValues.RA.stdBuilder()
.itemInputs(
GTOreDictUnificator.get(OrePrefixes.ingot, Materials.Rubber, 4L),
GTOreDictUnificator.get(OrePrefixes.cableGt04, aMaterial, 1L))
GTOreDictUnificator.get(OrePrefixes.wireGt04, aMaterial, 1L))
.itemOutputs(GTOreDictUnificator.get(OrePrefixes.cableGt04, aMaterial, 1L))
.duration(15 * SECONDS)
.eut(TierEU.RECIPE_LV)
Expand Down

0 comments on commit 05f8dd4

Please sign in to comment.