Skip to content

Commit

Permalink
l
Browse files Browse the repository at this point in the history
  • Loading branch information
DOOM authored and DOOM committed May 14, 2024
1 parent e3bf0dd commit d6bd20f
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions code/game/machinery/computer/security.dm
Original file line number Diff line number Diff line change
Expand Up @@ -100,18 +100,9 @@
var/datum/data/record/target_sec_record = retrieve_record(mob_name = username, record_type = RECORD_TYPE_SECURITY)
var/datum/data/record/target_gen_record = retrieve_record(mob_name = username, record_type = RECORD_TYPE_GENERAL)
target_general_record = list(
list(
value = target_gen_record?.fields[MOB_NAME],
message = "Name: "
),
list(
value = target_gen_record?.fields[MOB_AGE],
message ="Age: "
),
list(
value = target_gen_record?.fields[MOB_SEX],
message ="Sex: "
)
list(value = target_gen_record?.fields[MOB_NAME],message = "Name: "),
list(value = target_gen_record?.fields[MOB_AGE], message ="Age: "),
list(value = target_gen_record?.fields[MOB_SEX], message ="Sex: "),
)

crime_stat = list(
Expand Down

0 comments on commit d6bd20f

Please sign in to comment.