From cbd295920cf585e65756c5081781e391e0837960 Mon Sep 17 00:00:00 2001 From: KilaBash Date: Sun, 23 Jul 2023 00:51:54 +0800 Subject: [PATCH] fix gas collector --- .../data/recipe/serialized/chemistry/ChemistryRecipes.java | 4 ++-- gradle.properties | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/common/src/main/java/com/gregtechceu/gtceu/data/recipe/serialized/chemistry/ChemistryRecipes.java b/common/src/main/java/com/gregtechceu/gtceu/data/recipe/serialized/chemistry/ChemistryRecipes.java index 52c0a32af2..6bb3201c76 100644 --- a/common/src/main/java/com/gregtechceu/gtceu/data/recipe/serialized/chemistry/ChemistryRecipes.java +++ b/common/src/main/java/com/gregtechceu/gtceu/data/recipe/serialized/chemistry/ChemistryRecipes.java @@ -103,13 +103,13 @@ public static void init(Consumer provider) { GAS_COLLECTOR_RECIPES.recipeBuilder("nether_air") .circuitMeta(2) .outputFluids(NetherAir.getFluid(10000)) - .dimension(new ResourceLocation("nether")) + .dimension(new ResourceLocation("the_nether")) .duration(200).EUt(64).save(provider); GAS_COLLECTOR_RECIPES.recipeBuilder("ender_air") .circuitMeta(3) .outputFluids(EnderAir.getFluid(10000)) - .dimension(new ResourceLocation("end")) + .dimension(new ResourceLocation("the_end")) .duration(200).EUt(256).save(provider); // CaCO3 + 2NaCl -> Na2CO3 + CaCl2 diff --git a/gradle.properties b/gradle.properties index 9f6e536e77..8c7376ad86 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,7 +3,7 @@ org.gradle.jvmargs = -Xmx6G # Mod Info mod_id = gtceu mod_name = GregTech -mod_version = 1.0.7.a +mod_version = 1.0.7.b mod_description = GregTech CE Unofficial, ported from 1.12.2 mod_license = LGPL-3.0 license mod_url = https://https://github.com/GregTechCEu/GregTechCEu-1.19/