fix recipe collision with vanilla stone plates

This commit is contained in:
Pyritie 2025-12-15 18:37:19 +00:00
parent f2d633ff8e
commit 77abafee3e
3 changed files with 12 additions and 0 deletions

View file

@ -179,6 +179,7 @@ function registerGTCEUMetalRecipes(event) {
if (material.hasFlag(MaterialFlags.GENERATE_PLATE)
&& material !== GTMaterials.Wood
&& material !== GTMaterials.TreatedWood
&& material !== GTMaterials.Stone
&& !material.hasProperty(PropertyKey.POLYMER))
{
const plateStack = ChemicalHelper.get(TagPrefix.plate, material, 1)

View file

@ -51,6 +51,9 @@ function removeGTCEURecipes(event) {
removeMaceratorRecipe(event, 'macerate_cobblestone')
removeMaceratorRecipe(event, 'gravel_to_flint')
removeMaceratorRecipe(event, 'macerate_furnace')
removeCutterRecipe(event, 'cut_stone_block_to_plate')
removeCutterRecipe(event, 'cut_stone_block_to_plate_water')
removeCutterRecipe(event, 'cut_stone_block_to_plate_distilled_water')
//#endregion

View file

@ -1137,6 +1137,7 @@ function registerTFGRockRecipes(event) {
{ block: 'beneath:crackrack', dimension: null },
{ block: 'tfg:rock/cobble_crackrack', dimension: null },
{ block: 'minecraft:basalt', dimension: null },
{ block: 'minecraft:calcite', dimension: null },
{ block: 'ad_astra:moon_stone', dimension: 'ad_astra:moon' },
{ block: 'ad_astra:moon_cobblestone', dimension: 'ad_astra:moon' },
{ block: 'ad_astra:moon_deepslate', dimension: 'ad_astra:moon' },
@ -1262,4 +1263,11 @@ function registerTFGRockRecipes(event) {
.itemOutputs('6x minecraft:polished_blackstone_button')
.EUt(7)
.duration(100)
// Misc
event.recipes.gtceu.cutter('tfg:vanilla_stone_slab_to_plate')
.itemInputs('minecraft:stone_slab')
.itemOutputs('#forge:plates/stone')
.duration(20)
.EUt(GTValues.VA[GTValues.LV])
}