Replaces instances of phisical to physical (#7453)

This commit is contained in:
Sharp
2019-11-19 18:26:16 +01:00
committed by Werner
parent 79a7f4fcc7
commit a826141ec2
9 changed files with 54 additions and 13 deletions
@@ -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()
+2 -2
View File
@@ -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>