mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-28 23:51:17 +01:00
Replaces instances of phisical to physical (#7453)
This commit is contained in:
@@ -356,7 +356,7 @@
|
||||
|
||||
var/datum/record/general/R = SSrecords.find_record("name", perpname)
|
||||
if(istype(R))
|
||||
medical = R.phisical_status
|
||||
medical = R.physical_status
|
||||
|
||||
msg += "<span class = 'deptradio'>Physical status:</span> <a href='?src=\ref[src];medical=1'>\[[medical]\]</a>\n"
|
||||
msg += "<span class = 'deptradio'>Medical records:</span> <a href='?src=\ref[src];medrecord=`'>\[View\]</a> <a href='?src=\ref[src];medrecordadd=`'>\[Add comment\]</a>\n"
|
||||
|
||||
@@ -634,11 +634,11 @@
|
||||
|
||||
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.phisical_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*", "Physically Unfit", "Active", "Disabled", "Cancel")
|
||||
|
||||
if(hasHUD(usr,"medical"))
|
||||
if(setmedical != "Cancel")
|
||||
R.phisical_status = setmedical
|
||||
R.physical_status = setmedical
|
||||
modified = 1
|
||||
SSrecords.reset_manifest()
|
||||
|
||||
|
||||
@@ -116,7 +116,7 @@ Name: [R.name] ID: [R.id]<BR>
|
||||
Sex: [R.sex]<BR>
|
||||
Age: [R.age]<BR>
|
||||
Fingerprint: [R.fingerprint]<BR>
|
||||
Physical Status: [R.phisical_status]<BR>
|
||||
Physical Status: [R.physical_status]<BR>
|
||||
Mental Status: [R.mental_status]<BR>
|
||||
<BR>
|
||||
<CENTER><B>Security Data</B></CENTER><BR>
|
||||
@@ -159,7 +159,7 @@ Name: [R.name] ID: [R.id]<BR>
|
||||
Sex: [R.sex]<BR>
|
||||
Age: [R.age]<BR>
|
||||
Fingerprint: [R.fingerprint]<BR>
|
||||
Physical Status: [R.phisical_status]<BR>
|
||||
Physical Status: [R.physical_status]<BR>
|
||||
Mental Status: [R.mental_status]<BR>
|
||||
<BR>
|
||||
<CENTER><B>Medical Data</B></CENTER><BR>
|
||||
|
||||
Reference in New Issue
Block a user