diff --git a/code/datums/records.dm b/code/datums/records.dm
index 3841f618eb8..b74e06ceba1 100644
--- a/code/datums/records.dm
+++ b/code/datums/records.dm
@@ -195,9 +195,6 @@
/datum/record/medical
var/blood_type = "AB+"
var/blood_dna = "63920c3ec24b5d57d459b33a2f4d6446"
- var/disabilities = "No disabilities have been declared."
- var/allergies = "No allergies have been detected in this patient."
- var/diseases = "No diseases have been diagnosed at the moment."
var/list/comments = list()
/datum/record/medical/New(var/mob/living/carbon/human/H, var/nid)
@@ -210,6 +207,7 @@
blood_dna = H.dna.unique_enzymes
if(H.med_record && !jobban_isbanned(H, "Records"))
notes = H.med_record
+ else notes = "No history has been reported yet."
// Record for storing security data
/datum/record/security
diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm
index 19c7ce3e6c5..a73ae61808a 100644
--- a/code/modules/mob/living/carbon/human/human.dm
+++ b/code/modules/mob/living/carbon/human/human.dm
@@ -758,7 +758,6 @@
var/message = "Medical Records: [R.name]\n\n" \
+ "Name: [R.name] Blood Type: [R.medical.blood_type]\n" \
+ "DNA: [R.medical.blood_dna]\n" \
- + "Disabilities: [R.medical.disabilities]\n" \
+ "Notes: [R.medical.notes]\n" \
+ "\[View Comment Log\]"
to_chat(usr, EXAMINE_BLOCK_DEEP_CYAN(message))
diff --git a/code/modules/modular_computers/file_system/programs/generic/records.dm b/code/modules/modular_computers/file_system/programs/generic/records.dm
index 6c9a1b402e8..a56a0ce12d3 100644
--- a/code/modules/modular_computers/file_system/programs/generic/records.dm
+++ b/code/modules/modular_computers/file_system/programs/generic/records.dm
@@ -22,7 +22,7 @@
var/datum/record/virus/active_virus
var/listener/record/rconsole/listener
var/authenticated = FALSE
- var/default_screen = "general"
+ var/default_screen = "General"
var/record_prefix = ""
var/typechoices = list(
"physical_status" = list("Active", "*Deceased*", "*SSD*", "*Missing*", "Physically Unfit", "Disabled"),
@@ -53,7 +53,7 @@
records_type = RECORD_MEDICAL | RECORD_VIRUS
edit_type = RECORD_MEDICAL
- default_screen = "medical"
+ default_screen = "Medical"
program_icon_state = "medical_record"
program_key_icon_state = "teal_key"
color = LIGHT_COLOR_CYAN
@@ -70,7 +70,7 @@
records_type = RECORD_SECURITY
edit_type = RECORD_SECURITY
- default_screen = "security"
+ default_screen = "Security"
program_icon_state = "security_record"
program_key_icon_state = "yellow_key"
color = LIGHT_COLOR_YELLOW
@@ -88,6 +88,7 @@
records_type = RECORD_GENERAL | RECORD_SECURITY
edit_type = RECORD_GENERAL
+ default_screen = "General"
program_icon_state = "employment_record"
program_key_icon_state = "lightblue_key"
color = LIGHT_COLOR_BLUE
@@ -267,12 +268,6 @@
if("medical")
if(!(edit_type & RECORD_MEDICAL))
return FALSE
- if("diseases")
- if(!(edit_type & RECORD_MEDICAL))
- return FALSE
- if("allergies")
- if(!(edit_type & RECORD_MEDICAL))
- return FALSE
if("blood_type")
if(!(edit_type & RECORD_MEDICAL) || (edit_type & RECORD_SECURITY))
return FALSE
diff --git a/code/modules/paperwork/filingcabinet.dm b/code/modules/paperwork/filingcabinet.dm
index 4c9abcc0f36..f386cd11de3 100644
--- a/code/modules/paperwork/filingcabinet.dm
+++ b/code/modules/paperwork/filingcabinet.dm
@@ -167,9 +167,6 @@ Mental Status: [R.mental_status]