From 8f1ad1ccd2a07cad52356f997c59af04c6bc5e1b Mon Sep 17 00:00:00 2001 From: Timo Ley Date: Sat, 16 Dec 2023 11:38:26 +0100 Subject: [PATCH] feat: creative flight tweaks --- .../ntx4core/recipes/InputReplacements.java | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/main/java/net/anvilcraft/ntx4core/recipes/InputReplacements.java b/src/main/java/net/anvilcraft/ntx4core/recipes/InputReplacements.java index b6ed5fe..b6ec944 100644 --- a/src/main/java/net/anvilcraft/ntx4core/recipes/InputReplacements.java +++ b/src/main/java/net/anvilcraft/ntx4core/recipes/InputReplacements.java @@ -84,6 +84,21 @@ public class InputReplacements implements IEventBusRegisterable { ev.mapRecipes(new InputReplaceRecipeMapper().replace( "thermal:machine_frame", "industrialforegoing:machine_frame_simple" )); + + // Creative Flight tweaks + ev.mapRecipeID( + new Identifier("mekanism", "module_gravitational_modulating_unit"), + new InputReplaceRecipeMapper() + .replace("#forge:nether_stars", "projecte:swiftwolf_rending_gale") + .replace("mekanism:ultimate_induction_provider", "projecte:klein_star_omega") + ); + + ev.mapRecipeID( + new Identifier("assemblylinemachines", "crafting/mystium_flight_harness"), + new InputReplaceRecipeMapper() + .replace("minecraft:elytra", "projecte:swiftwolf_rending_gale") + .replace("minecraft:phantom_membrane", "projecte:klein_star_omega") + ); } @Override