fix: 吞噬盘appflux联动配方使用物品id避免出现找不到tag的问题

This commit is contained in:
C-H716 2025-11-17 22:47:27 +08:00
parent 5923000d3b
commit 27048e08bf
3 changed files with 4 additions and 5 deletions

View File

@ -22,7 +22,7 @@
"item": "appflux:energy_processor"
},
"M": {
"tag": "forge:gems/redstone"
"item": "appflux:redstone_crystal"
}
},
"pattern": [

View File

@ -23,7 +23,7 @@
"item": "appflux:core_256k"
},
"M": {
"tag": "forge:ingots/sky_insulating_resin"
"item": "appflux:sky_harden_insulating_resin"
},
"O": {
"item": "extendedae_plus:oblivion_singularity"

View File

@ -11,7 +11,6 @@ import com.extendedae_plus.items.BasicCoreItem;
import com.extendedae_plus.items.materials.EntitySpeedCardItem;
import com.extendedae_plus.util.ModCheckUtils;
import com.glodblock.github.appflux.common.AFItemAndBlock;
import com.glodblock.github.appflux.util.AFTags;
import com.glodblock.github.extendedae.common.EPPItemAndBlock;
import gripe._90.megacells.definition.MEGAItems;
import net.minecraft.data.PackOutput;
@ -289,7 +288,7 @@ public class CraftingRecipes extends RecipeProvider {
.pattern("MCM")
.pattern("EBE")
.pattern("MEM")
.define('M', AFTags.REDSTONE_GEM)
.define('M', AFItemAndBlock.REDSTONE_CRYSTAL)
.define('C', AFItemAndBlock.CORE_16k)
.define('E', AFItemAndBlock.ENERGY_PROCESSOR)
.defineNbt('B', base)
@ -315,7 +314,7 @@ public class CraftingRecipes extends RecipeProvider {
.pattern("MOM")
.pattern("CBC")
.pattern("MCM")
.define('M', AFTags.SKY_RESIN_INGOT)
.define('M', AFItemAndBlock.SKY_HARDEN_INSULATING_RESIN)
.define('O', ModItems.OBLIVION_SINGULARITY.get())
.define('C', AFItemAndBlock.CORE_256k)
.defineNbt('B', BasicCoreItem.energyStage(2))