Skip to content

Commit

Permalink
update GT, fix nem's recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
screret committed May 23, 2024
1 parent 5901004 commit eec5325
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 13 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@

### FIXES:

### CHANGES:
### CHANGES:
- updated to GT 1.2.3
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ org.gradle.jvmargs=-Xmx4G -Xss4M

mod_id=gcyr
mod_name=Gregicality Rocketry
mod_version=0.1.7.b
mod_version=0.1.8
maven_group=argent_matter

loom.platform=forge
loom.platform=forge
4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ dependencyResolutionManagement {
def vineFlowerVersion = "1.+"
def macheteVersion = "1.+"
def configurationVersion = "2.2.0"
def gtCeuVersion = "1.2.1"
def ldLibVersion = "1.0.25.f"
def gtCeuVersion = "1.2.3"
def ldLibVersion = "1.0.25.j"
def mixinExtrasVersion = "0.2.0"
def mixinVersion = "0.8.6-SNAPSHOT"

Expand Down
16 changes: 8 additions & 8 deletions src/main/java/argent_matter/gcyr/data/recipe/MiscRecipes.java
Original file line number Diff line number Diff line change
Expand Up @@ -209,42 +209,42 @@ public static void init(Consumer<FinishedRecipe> provider) {
);

VanillaRecipeHelper.addShapedRecipe(provider, GCyR.id("venus_cobblestone_stairs"), GCyRBlocks.VENUS_COBBLESTONE_STAIRS.asStack(4),
"S", "SS", "SSS",
"S ", "SS ", "SSS",
'S', GCyRBlocks.VENUS_COBBLESTONE.asStack()
);

VanillaRecipeHelper.addShapedRecipe(provider, GCyR.id("venus_rock_stairs"), GCyRBlocks.VENUS_ROCK_STAIRS.asStack(4),
"S", "SS", "SSS",
"S ", "SS ", "SSS",
'S', GCyRBlocks.VENUS_ROCK.asStack()
);

VanillaRecipeHelper.addShapedRecipe(provider, GCyR.id("mercury_cobblestone_stairs"), GCyRBlocks.MERCURY_COBBLESTONE_STAIRS.asStack(4),
"S", "SS", "SSS",
"S ", "SS ", "SSS",
'S', GCyRBlocks.MERCURY_COBBLESTONE.asStack()
);

VanillaRecipeHelper.addShapedRecipe(provider, GCyR.id("mercury_rock_stairs"), GCyRBlocks.MERCURY_ROCK_STAIRS.asStack(4),
"S", "SS", "SSS",
"S ", "SS ", "SSS",
'S', GCyRBlocks.MERCURY_ROCK.asStack()
);

VanillaRecipeHelper.addShapedRecipe(provider, GCyR.id("martian_cobblestone_stairs"), GCyRBlocks.MARTIAN_COBBLESTONE_STAIRS.asStack(4),
"S", "SS", "SSS",
"S ", "SS ", "SSS",
'S', GCyRBlocks.MARTIAN_COBBLESTONE.asStack()
);

VanillaRecipeHelper.addShapedRecipe(provider, GCyR.id("martian_rock_stairs"), GCyRBlocks.MARTIAN_ROCK_STAIRS.asStack(4),
"S", "SS", "SSS",
"S ", "SS ", "SSS",
'S', GCyRBlocks.MARTIAN_ROCK.asStack()
);

VanillaRecipeHelper.addShapedRecipe(provider, GCyR.id("moon_cobblestone_stairs"), GCyRBlocks.MOON_COBBLESTONE_STAIRS.asStack(4),
"S", "SS", "SSS",
"S ", "SS ", "SSS",
'S', GCyRBlocks.MOON_COBBLESTONE.asStack()
);

VanillaRecipeHelper.addShapedRecipe(provider, GCyR.id("moon_stone_stairs"), GCyRBlocks.MOON_STONE_STAIRS.asStack(4),
"S", "SS", "SSS",
"S ", "SS ", "SSS",
'S', GCyRBlocks.MOON_STONE.asStack()
);

Expand Down

0 comments on commit eec5325

Please sign in to comment.