i dont know whats wrong, game launches but gt recipes are gone in emi, the recipes work but i cant see them
.rotationState(RotationState.NON_Y_AXIS)
.recipeTypes(GTRecipeTypes.PYROLYSE_RECIPES)
.recipeModifiers([GTRecipeModifiers.PARALLEL_HATCH, GTRecipeModifiers.OC_NON_PERFECT])
.appearanceBlock(GCYMBlocks.CASING_HIGH_TEMPERATURE_SMELTING)
.pattern(definition => FactoryBlockPattern.start()
.aisle('HHH', 'HMH', 'HHH')
.aisle('CCC', 'C C', 'CCC')
.aisle('VVV', 'V V', 'VVV')
.aisle('CCC', 'C C', 'CCC')
.aisle('HHH', 'H#H', 'HHH')
.where('#', Predicates.controller(Predicates.blocks(definition.get())))
.where('H', Predicates.blocks(GCYMBlocks.CASING_HIGH_TEMPERATURE_SMELTING.get()
.or(Predicates.autoAbilities(definition.getRecipeTypes()))
.or(Predicates.abilities(PartAbility.PARALLEL_HATCH).setMaxGlobalLimited(1))
.or(Predicates.abilities(PartAbility.MAINTENANCE).setExactLimit(1)))
.where('C', Predicates.blocks(GTBlocks.COIL_HSSG.get()))
.where('V', Predicates.blocks(GCYMBlocks.HEAT_VENT.get()))
.where('M', Predicates.abilities(PartAbility.MUFFLER)))
.where(' ', Predicates.any())
.build())
.workableCasingRenderer("gtceu:block/casings/gcym/high_temperature_smelting_casing",
"gtceu:block/multiblock/pyrolyse_oven", false)```