fix: 吞噬盘appflux联动配方使用物品id避免出现找不到tag的问题
This commit is contained in:
parent
e7ad14ca6b
commit
ab7a7a57f6
|
|
@ -22,7 +22,7 @@
|
|||
"item": "appflux:energy_processor"
|
||||
},
|
||||
"M": {
|
||||
"tag": "forge:gems/redstone"
|
||||
"item": "appflux:redstone_crystal"
|
||||
}
|
||||
},
|
||||
"pattern": [
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user