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
registrate_version = MC1.18.2-1.1.3
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_version = 9.7.0.209
curios_minecraft_version = 1.18.2

View file

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

View file

@ -24,8 +24,8 @@ public class MysteriousItemConversionCategory extends CreateRecipeCategory<Conve
static {
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(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.SHADOW_STEEL.asStack()));
// RECIPES.add(ConversionRecipe.create(AllItems.CHROMATIC_COMPOUND.asStack(), AllItems.REFINED_RADIANCE.asStack()));
}
public MysteriousItemConversionCategory(Info<ConversionRecipe> info) {

View file

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

View file

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