mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
The Syndicate uplink now only access the locked records, meaning it will be unaware of later in-round changes concerning a given character.
This commit is contained in:
@@ -114,28 +114,28 @@
|
||||
S.fields["notes"] = "No notes."
|
||||
security += S
|
||||
|
||||
// Records with oermanently available information
|
||||
var/datum/data/record/P = new()
|
||||
P.fields["id"] = id
|
||||
P.fields["name"] = H.real_name
|
||||
if(H.exploit_record && !jobban_isbanned(H, "Records"))
|
||||
P.fields["exploit_record"] = H.exploit_record
|
||||
else
|
||||
P.fields["exploit_record"] = "No additional information acquired."
|
||||
permanent += P
|
||||
|
||||
//Locked Record
|
||||
var/datum/data/record/L = new()
|
||||
L.fields["id"] = md5("[H.real_name][H.mind.assigned_role]")
|
||||
L.fields["name"] = H.real_name
|
||||
L.fields["rank"] = H.mind.assigned_role
|
||||
L.fields["age"] = H.age
|
||||
L.fields["fingerprint"] = md5(H.dna.uni_identity)
|
||||
L.fields["sex"] = H.gender
|
||||
L.fields["b_type"] = H.b_type
|
||||
L.fields["b_dna"] = H.dna.unique_enzymes
|
||||
L.fields["enzymes"] = H.dna.SE // Used in respawning
|
||||
L.fields["identity"] = H.dna.UI // "
|
||||
L.fields["species"] = H.get_species()
|
||||
L.fields["home_system"] = H.home_system
|
||||
L.fields["citizenship"] = H.citizenship
|
||||
L.fields["faction"] = H.personal_faction
|
||||
L.fields["religion"] = H.religion
|
||||
L.fields["image"] = getFlatIcon(H) //This is god-awful
|
||||
if(H.exploit_record && !jobban_isbanned(H, "Records"))
|
||||
L.fields["exploit_record"] = H.exploit_record
|
||||
else
|
||||
L.fields["exploit_record"] = "No additional information acquired."
|
||||
locked += L
|
||||
return
|
||||
|
||||
|
||||
Reference in New Issue
Block a user