One can now save exploitable information about the character, potentially to be used by antags.

This commit is contained in:
PsiOmega
2014-08-31 21:31:10 +02:00
parent c26531f0d4
commit 89b29eb0f0
6 changed files with 40 additions and 7 deletions
+10
View File
@@ -110,6 +110,16 @@
S.fields["notes"] = "No notes."
security += S
// Records with exploitative information
var/datum/data/record/E = new()
E.fields["id"] = id
E.fields["name"] = H.real_name
if(H.exploit_record && !jobban_isbanned(H, "Records"))
E.fields["notes"] = H.exploit_record
else
E.fields["notes"] = "No additional information acquired."
exploit += E
//Locked Record
var/datum/data/record/L = new()
L.fields["id"] = md5("[H.real_name][H.mind.assigned_role]")