This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- wrap ME bridge | |
| local me = peripheral.find("me_bridge") | |
| assert(me, "ME Bridge not found") | |
| -- wrap monitor on top | |
| local mon = peripheral.wrap("top") | |
| assert(mon, "Monitor not found") | |
| -- inventory behind turtle | |
| local INV_SIDE = "back" |