Beyond-Reality / BeyondRealityModPack

Mod pack for the beyond reality team
21 stars 14 forks source link

OpenComputers computer case tiers 2 and 3 can't be crafted. #427

Closed Ratysz closed 7 years ago

Ratysz commented 7 years ago

Likely due to requiring heat vents without any metadata, which are not possible to obtain as far as I can tell. I haven't yet found if any other recipes suffer from this as well.

spacebuilder2020 commented 7 years ago

xD. I think they were craftable at one point.

leagris commented 7 years ago

Gregtech Recipes assets from the mod are ok with subID=1 https://github.com/MightyPirates/OpenComputers/blob/master-MC1.7.10/src/main/resources/assets/opencomputers/recipes/gregtech.recipes#L286-L290

case2 {
  input: [[screwStainlessSteel , "oc:materialCircuitBoardPrinted", craftingToolWrench]
          [{item="ic2.reactorVentGold", subID=1}, "oc:case1", {item="ic2.reactorVentGold", subID=1}]
          [screwStainlessSteel, "oc:circuitChip2", craftingToolScrewdriver]]
}

It is our current override recipes that are wrong: https://github.com/Beyond-Reality/BeyondRealityModPack/blob/ff64121e44ad854bcbdc6433f11b99d59c8f086d/BR1710/config/opencomputers/beyondreality.recipes#L290-L294

case2 {
  input: [[screwStainlessSteel , "oc:materialCircuitBoardPrinted", craftingToolWrench]
          ["ic2.reactorVentGold", "oc:case1", "ic2.reactorVentGold"]
          [screwStainlessSteel, "oc:circuitChip2", craftingToolScrewdriver]]
}