Skip to content

Commit

Permalink
Fix missing casing recipes (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
tier940 authored Jul 23, 2023
1 parent 63c0c00 commit 7830502
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public static void init() {
Trinaquadalloy = new Material.Builder(3005, gregtechId("trinaquadalloy"))
.ingot().fluid()
.color(0x281832).iconSet(MaterialIconSet.BRIGHT)
.flags(GENERATE_PLATE)
.flags(GENERATE_PLATE, GENERATE_DOUBLE_PLATE)
.components(Trinium, 6, Naquadah, 2, Carbon, 1)
.blastTemp(8747, BlastProperty.GasTier.HIGHER, GTValues.VA[GTValues.ZPM], 1200)
.build();
Expand Down Expand Up @@ -88,7 +88,7 @@ public static void init() {
MolybdenumDisilicide = new Material.Builder(3009, gregtechId("molybdenum_disilicide"))
.ingot().fluid()
.color(0x6A5BA3).iconSet(MaterialIconSet.METALLIC)
.flags(GENERATE_PLATE, GENERATE_ROD, GENERATE_LONG_ROD, GENERATE_SPRING, GENERATE_RING)
.flags(EXT_METAL, GENERATE_DOUBLE_PLATE, GENERATE_LONG_ROD, GENERATE_SPRING, GENERATE_RING)
.components(Molybdenum, 1, Silicon, 2)
.blastTemp(2300, BlastProperty.GasTier.MID, GTValues.VA[GTValues.EV], 800)
.build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public static void init() {
HSLASteel = new Material.Builder(3020, gregtechId("hsla_steel"))
.ingot().fluid()
.color(0x808080).iconSet(MaterialIconSet.METALLIC)
.flags(GENERATE_PLATE, GENERATE_ROD, GENERATE_LONG_ROD, GENERATE_SPRING, GENERATE_FRAME)
.flags(EXT_METAL, GENERATE_DOUBLE_PLATE, GENERATE_LONG_ROD, GENERATE_SPRING, GENERATE_FRAME)
.components(Invar, 2, Vanadium, 1, Titanium, 1, Molybdenum, 1)
.blastTemp(1711, BlastProperty.GasTier.LOW, GTValues.VA[GTValues.HV], 1000)
.build();
Expand Down

0 comments on commit 7830502

Please sign in to comment.