diff --git a/code/game/machinery/computer/buildandrepair.dm b/code/game/machinery/computer/buildandrepair.dm index fa2371592bc..b74a49d5d28 100644 --- a/code/game/machinery/computer/buildandrepair.dm +++ b/code/game/machinery/computer/buildandrepair.dm @@ -237,8 +237,8 @@ build_path = /obj/machinery/computer/slot_machine origin_tech = "programming=1" /obj/item/weapon/circuitboard/libraryconsole - name = "circuit board (Book Inventory Management Console)" - build_path = /obj/machinery/computer/libraryconsole/bookmanagement + name = "circuit board (Library Visitor Console)" + build_path = /obj/machinery/computer/libraryconsole origin_tech = "programming=1" diff --git a/code/modules/library/lib_machines.dm b/code/modules/library/lib_machines.dm index 4f460888f80..af13630407a 100644 --- a/code/modules/library/lib_machines.dm +++ b/code/modules/library/lib_machines.dm @@ -135,6 +135,11 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f var/bibledelay = 0 +/obj/machinery/computer/libraryconsole/bookmanagement/New() + ..() + if(circuit) + circuit.name = "circuit board (Book Inventory Management Console)" + circuit.build_path = /obj/machinery/computer/libraryconsole/bookmanagement /obj/machinery/computer/libraryconsole/bookmanagement/interact(mob/user) user.set_machine(src) diff --git a/code/modules/research/rdconsole.dm b/code/modules/research/rdconsole.dm index 7c695ffe718..b05f0857027 100644 --- a/code/modules/research/rdconsole.dm +++ b/code/modules/research/rdconsole.dm @@ -988,6 +988,12 @@ won't update every console in existence) but it's more of a hassle to do. Also, req_access = null req_access_txt = "29" +/obj/machinery/computer/rdconsole/robotics/New() + ..() + if(circuit) + circuit.name = "circuit board (RD Console - Robotics)" + circuit.build_path = /obj/machinery/computer/rdconsole/robotics + /obj/machinery/computer/rdconsole/core name = "Core R&D Console" desc = "A console used to interface with R&D tools."