Recipe for printer.

This commit is contained in:
Florian Nücke 2015-03-24 18:19:11 +01:00
parent 6eafc4996d
commit 2de2049a2f
2 changed files with 6 additions and 1 deletions

View File

@ -514,6 +514,11 @@ motionSensor {
[daylightDetector, "oc:cpu2", daylightDetector]
[ingotGold, "oc:materialCircuitBoardPrinted", ingotGold]]
}
printer {
input: [[ingotIron, hopper, ingotIron]
[craftingPiston, "oc:circuitChip3", craftingPiston]
[ingotIron, "oc:materialCircuitBoardPrinted", ingotIron]]
}
powerConverter {
input: [[ingotIron, "oc:cable", ingotIron]
[ingotGold, "oc:circuitChip1", ingotGold]

View File

@ -86,6 +86,6 @@ object Blocks {
// v1.5.4
Items.registerBlock(new Print(), "print")
Items.registerBlock(new Printer(), "printer")
Recipes.addBlock(new Printer(), "printer", "oc:printer")
}
}