Modern Industrialization

Modern Industrialization

4M Downloads

dimension specified recipes do not start

Abalieno opened this issue ยท 1 comments

commented

As written on discord, using 1.19.2 and Modern-Industrialization-1.6.18

Two example recipes, the first is verified to be working, the other doesn't start.

event.recipes.modern_industrialization.drill1(2, 6000)
.itemIn("drilly:copper_drill", 0.09)
.itemIn("drilly:drill_group1", 0.00)
.itemOut("5x minecraft:raw_copper", 0.58)
.itemOut("modern_industrialization:raw_tin", 0.25)
.itemOut("minecraft:raw_iron", 0.07)
.itemOut("minecraft:coal", 0.08)
.itemOut("drilly:tiny_tier1_experience", 0.5)
.dimension("overworld")
.adjacentBlock("geggy:copper_corenode", "below")
.id("001_coppercore_slow")

event.recipes.modern_industrialization.drill1(2, 6000)
.itemIn("drilly:copper_drill", 0.09)
.itemIn("drilly:drill_groupx", 0.00)
.itemOut("2x minecraft:quartz", 0.52)
.itemOut("1x minecraft:andesite", 0.24)
.itemOut("1x minecraft:basalt", 0.15)
.itemOut("1x minecraft:glowstone", 0.06)
.itemOut("1x geghilarity:precious_nugget", 0.2)
.itemOut("drilly:tiny_tier1_experience", 0.5)
.dimension("nether")
.adjacentBlock("geggy:quartz_corenode", "below")
.id("qea_quartzcore_slow")

Only significant difference being the dimension. Removing the dimension line makes the machine start normally, so I suppose the dimension isn't properly detected.

I don't see why it should be related, but the dimension is not displayed correctly in the in-game recipe.

uluol