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:
PsiOmega
2014-09-01 15:41:20 +02:00
parent 9e4b7ed265
commit b7d356c4ab
6 changed files with 32 additions and 49 deletions

View File

@@ -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