Loadout Laptop ID Slot (#11885)

This commit is contained in:
Geeves
2021-05-24 16:20:42 +02:00
committed by GitHub
parent 9b5c861ddd
commit 729ff8627f
3 changed files with 11 additions and 3 deletions
@@ -1,6 +1,6 @@
/datum/gear/computer
display_name = "laptop computer"
path = /obj/item/modular_computer/laptop/preset
path = /obj/item/modular_computer/laptop/preset/loadout
sort_category = "Modular Computers"
cost = 2
@@ -15,8 +15,10 @@
nano_printer.stored_paper = 5
tesla_link = new /obj/item/computer_hardware/tesla_link/charging_cable(src)
/obj/item/modular_computer/laptop/preset/install_default_programs()
..()
// the laptop in the modular computer loadout
/obj/item/modular_computer/laptop/preset/loadout/install_default_hardware()
. = ..()
card_slot = new /obj/item/computer_hardware/card_slot(src)
// Engineering
/obj/item/modular_computer/laptop/preset/engineering
+6
View File
@@ -0,0 +1,6 @@
author: Geeves
delete-after: True
changes:
- rscadd: "The modular computer laptop from the loadout now comes with an ID slot."