Medical Borg Surgical Processor is now used to start surgeries (#73993)

## About The Pull Request

Makes it so that the surgical processor is now used to start surgeries
instead of the surgical drapes.
This makes it less confusing for new players who download surgeries and
then cannot figure out how to actually use them.
Previously you had to have the module and the drapes active at the same
time, now just the module.
## Why It's Good For The Game

Quality of life for medical borgs, and also not a noob trap anymore.
## Changelog
🆑
add: Surgical Processor upgrade for medical cyborgs can now be used to
start surgeries.
balance: You no longer need to use two module slots for starting
surgeries with the surgical processor.
/🆑
This commit is contained in:
Zephyr
2023-03-17 17:53:51 -06:00
committed by GitHub
parent 6428b1fb8b
commit 333d2ed5d4
+4 -1
View File
@@ -248,7 +248,6 @@
. = ..()
AddComponent(/datum/component/surgery_initiator)
/obj/item/surgical_processor //allows medical cyborgs to scan and initiate advanced surgeries
name = "surgical processor"
desc = "A device for scanning and initiating surgeries from a disk or operating computer."
@@ -257,6 +256,10 @@
item_flags = NOBLUDGEON
var/list/loaded_surgeries = list()
/obj/item/surgical_processor/Initialize(mapload)
. = ..()
AddComponent(/datum/component/surgery_initiator)
/obj/item/surgical_processor/examine(mob/user)
. = ..()
. += span_notice("Equip the processor in one of your active modules to access downloaded advanced surgeries.")