Skip to content

Commit

Permalink
multimeter supreme
Browse files Browse the repository at this point in the history
  • Loading branch information
LordNest committed Jan 20, 2025
1 parent 60b6e0a commit c033a3a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions mods/utility_items/code/wires.dm
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@

/datum/wires/apc/SolveWireFunction(function)
var/sf = ""
var/obj/machinery/power/apc/APC = holder
switch(function)
if(APC_WIRE_IDSCAN)
sf = "Port A"
Expand All @@ -107,12 +108,13 @@
if(APC_WIRE_MAIN_POWER2)
sf = "Port C"
if(APC_WIRE_AI_CONTROL)
sf = "Port D"
sf = "Port D (NTNet ID = [APC.NTNet_id])"

return sf

/datum/wires/camera/SolveWireFunction(function)
var/sf = ""
var/obj/machinery/camera/CAM = holder
switch(function)
if(CAMERA_WIRE_FOCUS)
sf = "Port A"
Expand All @@ -123,7 +125,7 @@
if(CAMERA_WIRE_ALARM)
sf = "Port D"
if(CAMERA_WIRE_NOTHING1)
sf = "Port E"
sf = "Port E (NTNet ID = [CAM.NTNet_id])"
if(CAMERA_WIRE_NOTHING2)
sf = "Port F"

Expand Down

0 comments on commit c033a3a

Please sign in to comment.