mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-23 00:22:12 +00:00
Husk repair fixes (#8450)
This commit is contained in:
@@ -69,6 +69,7 @@
|
||||
if(head.disfigured || (HUSK in target.mutations))
|
||||
head.disfigured = FALSE
|
||||
target.mutations.Remove(HUSK)
|
||||
target.update_body()
|
||||
user.visible_message("[user] successfully restores [target]'s appearance!", "<span class='notice'>You successfully restore [target]'s appearance.</span>")
|
||||
|
||||
var/getName = sanitize(input(user, "What is your patient's new identity?", "Name change") as null|text, MAX_NAME_LEN)
|
||||
@@ -208,8 +209,10 @@
|
||||
|
||||
/datum/surgery_step/robotics/face/alter_synthface/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
|
||||
var/obj/item/organ/external/head/head = target.get_organ(target_zone)
|
||||
if(head.disfigured)
|
||||
if(head.disfigured || (HUSK in target.mutations))
|
||||
head.disfigured = FALSE
|
||||
target.mutations.Remove(HUSK)
|
||||
target.update_body()
|
||||
user.visible_message("[user] successfully restores [target]'s appearance!", "<span class='notice'>You successfully restore [target]'s appearance.</span>")
|
||||
|
||||
var/getName = sanitize(input(user, "What is your patient's new identity?", "Name change") as null|text, MAX_NAME_LEN)
|
||||
|
||||
Reference in New Issue
Block a user