mirror of
https://github.com/Skyrat-SS13/Skyrat-tg.git
synced 2026-08-24 13:27:32 +01:00
[PORT][NON-MODULAR] Physical Age & Chronological Age (#27928)
* [PORT][NON-MODULAR] Physical Age & Chronological Age
* Whoopsy
* Update RecordView.tsx
* Update RecordView.tsx
* Fixes a toggle with the star wars helmet
* Revert "Fixes a toggle with the star wars helmet"
This reverts commit 0b17d52a2b.
* Update code/game/machinery/computer/records/medical.dm
This commit is contained in:
@@ -39,6 +39,7 @@
|
||||
var/list/current_record = list()
|
||||
|
||||
current_record["age"] = person.age
|
||||
current_record["chrono_age"] = person.chrono_age // SKYRAT EDIT ADDITION - Chronological age
|
||||
current_record["fingerprint"] = person.fingerprint
|
||||
current_record["gender"] = person.gender
|
||||
current_record["name"] = person.name
|
||||
@@ -52,6 +53,8 @@
|
||||
for(var/datum/record/crew/person in GLOB.manifest.general)
|
||||
var/list/current_record = list()
|
||||
|
||||
current_record["age"] = person.age // SKYRAT EDIT ADDITION - Chronological age
|
||||
current_record["chrono_age"] = person.chrono_age // SKYRAT EDIT ADDITION - Chronological age
|
||||
current_record["bloodtype"] = person.blood_type
|
||||
current_record["ma_dis"] = person.major_disabilities_desc
|
||||
current_record["mi_dis"] = person.minor_disabilities_desc
|
||||
|
||||
Reference in New Issue
Block a user