This commit is contained in:
simibubi 2022-08-13 23:19:44 +02:00
parent a1b949c084
commit 65073e84bd
5 changed files with 7 additions and 5 deletions

View File

@ -21,7 +21,7 @@ parchment_version = 2022.07.10
# dependency versions # dependency versions
registrate_version = MC1.18.2-1.1.3 registrate_version = MC1.18.2-1.1.3
flywheel_minecraft_version = 1.18.2 flywheel_minecraft_version = 1.18.2
flywheel_version = 0.6.4-90 flywheel_version = 0.6.5-91
jei_minecraft_version = 1.18.2 jei_minecraft_version = 1.18.2
jei_version = 9.7.0.209 jei_version = 9.7.0.209
curios_minecraft_version = 1.18.2 curios_minecraft_version = 1.18.2

View File

@ -307,7 +307,7 @@ public class CreateJEI implements IModPlugin {
mysteryConversion = builder(ConversionRecipe.class) mysteryConversion = builder(ConversionRecipe.class)
.addRecipes(() -> MysteriousItemConversionCategory.RECIPES) .addRecipes(() -> MysteriousItemConversionCategory.RECIPES)
.itemIcon(AllItems.CHROMATIC_COMPOUND.get()) .itemIcon(AllBlocks.PECULIAR_BELL.get())
.emptyBackground(177, 50) .emptyBackground(177, 50)
.build("mystery_conversion", MysteriousItemConversionCategory::new); .build("mystery_conversion", MysteriousItemConversionCategory::new);

View File

@ -24,8 +24,8 @@ public class MysteriousItemConversionCategory extends CreateRecipeCategory<Conve
static { static {
RECIPES.add(ConversionRecipe.create(AllItems.EMPTY_BLAZE_BURNER.asStack(), AllBlocks.BLAZE_BURNER.asStack())); RECIPES.add(ConversionRecipe.create(AllItems.EMPTY_BLAZE_BURNER.asStack(), AllBlocks.BLAZE_BURNER.asStack()));
RECIPES.add(ConversionRecipe.create(AllBlocks.PECULIAR_BELL.asStack(), AllBlocks.HAUNTED_BELL.asStack())); RECIPES.add(ConversionRecipe.create(AllBlocks.PECULIAR_BELL.asStack(), AllBlocks.HAUNTED_BELL.asStack()));
RECIPES.add(ConversionRecipe.create(AllItems.CHROMATIC_COMPOUND.asStack(), AllItems.SHADOW_STEEL.asStack())); // RECIPES.add(ConversionRecipe.create(AllItems.CHROMATIC_COMPOUND.asStack(), AllItems.SHADOW_STEEL.asStack()));
RECIPES.add(ConversionRecipe.create(AllItems.CHROMATIC_COMPOUND.asStack(), AllItems.REFINED_RADIANCE.asStack())); // RECIPES.add(ConversionRecipe.create(AllItems.CHROMATIC_COMPOUND.asStack(), AllItems.REFINED_RADIANCE.asStack()));
} }
public MysteriousItemConversionCategory(Info<ConversionRecipe> info) { public MysteriousItemConversionCategory(Info<ConversionRecipe> info) {

View File

@ -167,6 +167,8 @@ public class RemapHelper {
remapPaletteBlock("dolomite", "calcite", false); remapPaletteBlock("dolomite", "calcite", false);
remapPaletteBlock("weathered_limestone", "tuff", false); remapPaletteBlock("weathered_limestone", "tuff", false);
reMap.put("natural_scoria", asResource("scoria"));
reMap.put("empty_blueprint", SCHEMATIC.getId()); reMap.put("empty_blueprint", SCHEMATIC.getId());
reMap.put("gold_sheet", GOLDEN_SHEET.getId()); reMap.put("gold_sheet", GOLDEN_SHEET.getId());
reMap.put("flour", WHEAT_FLOUR.getId()); reMap.put("flour", WHEAT_FLOUR.getId());

View File

@ -33,6 +33,6 @@ Technology that empowers the player.'''
[[dependencies.create]] [[dependencies.create]]
modId="flywheel" modId="flywheel"
mandatory=true mandatory=true
versionRange="[0.6.4,0.6.5)" versionRange="[0.6.5,0.6.6)"
ordering="AFTER" ordering="AFTER"
side="CLIENT" side="CLIENT"