Skip to content

Commit

Permalink
the hell you mean??
Browse files Browse the repository at this point in the history
  • Loading branch information
screret committed Jan 18, 2024
1 parent 795e960 commit e23eee1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ processResources {

remapJar {
inputFile.set jar.archiveFile
dependsOn jar
dependsOn(":optimizeOutputsOfJar")
archiveClassifier.set(null)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import argent_matter.gcyr.common.recipe.DysonSphereCondition;
import argent_matter.gcyr.common.recipe.OrbitCondition;
import com.gregtechceu.gtceu.GTCEu;
import com.gregtechceu.gtceu.api.GTCEuAPI;
import com.gregtechceu.gtceu.api.data.tag.TagPrefix;
import com.gregtechceu.gtceu.common.data.GTMachines;
import com.gregtechceu.gtceu.common.data.GTMaterials;
Expand Down Expand Up @@ -82,13 +83,13 @@ public static void init(Consumer<FinishedRecipe> provider) {
DYSON_ENERGY_RECIPES.recipeBuilder(GCyR.id("run_dyson_sphere_space"))
.addCondition(new DysonSphereCondition())
.addCondition(new OrbitCondition())
.duration(200).EUt(GTCEu.isHighTier() ? -V[UIV] : -V[UV])
.duration(200).EUt(GTCEuAPI.isHighTier() ? -V[UIV] : -V[UV])
.save(provider);

DYSON_ENERGY_RECIPES.recipeBuilder(GCyR.id("run_dyson_sphere_not_space"))
.addCondition(new DysonSphereCondition())
.addCondition(new OrbitCondition().setReverse(true))
.duration(200).EUt(GTCEu.isHighTier() ? -V[UHV] : -V[ZPM])
.duration(200).EUt(GTCEuAPI.isHighTier() ? -V[UHV] : -V[ZPM])
.save(provider);
}
}

0 comments on commit e23eee1

Please sign in to comment.