Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
screret committed May 23, 2024
1 parent eec5325 commit 055e5dd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/argent_matter/gcyr/data/recipe/MiscRecipes.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import argent_matter.gcyr.common.data.GCyRMaterials;
import argent_matter.gcyr.data.recipe.builder.SmithingSpaceSuitRecipeBuilder;
import com.gregtechceu.gtceu.api.GTCEuAPI;
import com.gregtechceu.gtceu.api.GTValues;
import com.gregtechceu.gtceu.api.data.chemical.material.stack.UnificationEntry;
import com.gregtechceu.gtceu.api.data.tag.TagPrefix;
import com.gregtechceu.gtceu.common.data.*;
Expand Down Expand Up @@ -167,7 +166,7 @@ public static void init(Consumer<FinishedRecipe> provider) {
.outputItems(GCyRBlocks.CASING_STAINLESS_EVAPORATION.asStack(1))
.duration(30).EUt(VA[HV]).save(provider);

// Decoration Stuff
// region Decoration Stuff
VanillaRecipeHelper.addShapedRecipe(provider, GCyR.id("venus_cobblestone_slab"), GCyRBlocks.VENUS_COBBLESTONE_SLAB.asStack(3),
"SSS",
'S', GCyRBlocks.VENUS_COBBLESTONE.asStack()
Expand All @@ -178,7 +177,7 @@ public static void init(Consumer<FinishedRecipe> provider) {
'S', GCyRBlocks.VENUS_ROCK.asStack()
);

VanillaRecipeHelper.addShapedRecipe(provider, GCyR.id("mercury_cobblestone_slab"), GCyRBlocks.MERCURY_COBBLESTONE_SLAB.asStack(3),
VanillaRecipeHelper.addShapedRecipe(provider, GCyR.id("mercury_cobblestone_slab"), GCyRBlocks.MERCURY_COBBLESTONE_SLAB.asStack(3),
"SSS",
'S', GCyRBlocks.MERCURY_COBBLESTONE.asStack()
);
Expand Down Expand Up @@ -248,11 +247,12 @@ public static void init(Consumer<FinishedRecipe> provider) {
'S', GCyRBlocks.MOON_STONE.asStack()
);

VanillaRecipeHelper.addShapelessRecipe(provider, "venus_button", GCyRBlocks.VENUS_ROCK_BUTTON.asStack(), GCyRBlocks.VENUS_ROCK_BUTTON.asStack());
VanillaRecipeHelper.addShapelessRecipe(provider, "venus_button", GCyRBlocks.VENUS_ROCK_BUTTON.asStack(), GCyRBlocks.VENUS_ROCK.asStack());
VanillaRecipeHelper.addShapelessRecipe(provider, "mercury_button", GCyRBlocks.MERCURY_ROCK_BUTTON.asStack(), GCyRBlocks.MERCURY_ROCK.asStack());
VanillaRecipeHelper.addShapelessRecipe(provider, "martian_button", GCyRBlocks.MARTIAN_ROCK_BUTTON.asStack(), GCyRBlocks.MARTIAN_ROCK.asStack());
VanillaRecipeHelper.addShapelessRecipe(provider, "moon_button", GCyRBlocks.MOON_STONE_BUTTON.asStack(), GCyRBlocks.MOON_STONE.asStack());

// endregion
}

}

0 comments on commit 055e5dd

Please sign in to comment.