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