update ar peripheral IDs

This commit is contained in:
LordMZTE 2021-11-22 00:10:04 +01:00
parent 5c5870b488
commit 64bc0cc6d3
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
local ar = peripheral.find "arController"
local pl_detector = peripheral.find "playerDetector"
local nrg_cell = peripheral.find "thermal:energy_cell"
local nrg_in = peripheral.wrap "energyDetector_0"
local nrg_out = peripheral.wrap "energyDetector_1"
local nrg_in = peripheral.wrap "energyDetector_2"
local nrg_out = peripheral.wrap "energyDetector_4"
if ar == nil or pl_detector == nil or nrg_cell == nil or nrg_in == nil or nrg_out == nil then
error "couldnt find all peripherals."