mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-13 00:47:31 +01:00
Adds "*Missing*" as a possible physical status in medical records (#15174)
This commit is contained in:
@@ -676,7 +676,7 @@
|
||||
|
||||
var/datum/record/general/R = SSrecords.find_record("name", perpname)
|
||||
if(istype(R))
|
||||
var/setmedical = input(usr, "Specify a new medical status for this person.", "Medical HUD", R.physical_status) in list("*SSD*", "*Deceased*", "Physically Unfit", "Active", "Disabled", "Cancel")
|
||||
var/setmedical = input(usr, "Specify a new medical status for this person.", "Medical HUD", R.physical_status) in list("*SSD*", "*Deceased*", "*Missing*", "Physically Unfit", "Active", "Disabled", "Cancel")
|
||||
|
||||
if(hasHUD(usr,"medical"))
|
||||
if(setmedical != "Cancel")
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
var/default_screen = "general"
|
||||
var/record_prefix = ""
|
||||
var/typechoices = list(
|
||||
"physical_status" = list("Active", "*Deceased*", "*SSD*", "Physically Unfit", "Disabled"),
|
||||
"physical_status" = list("Active", "*Deceased*", "*SSD*", "*Missing*", "Physically Unfit", "Disabled"),
|
||||
"criminal_status" = list("None", "*Arrest*", "Search", "Incarcerated", "Parolled", "Released"),
|
||||
"mental_status" = list("Stable", "*Insane*", "*Unstable*", "*Watch*"),
|
||||
"medical" = list(
|
||||
|
||||
Reference in New Issue
Block a user