mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-26 13:39:16 +01:00
One can now save exploitable information about the character, potentially to be used by antags.
This commit is contained in:
@@ -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]")
|
||||
|
||||
Reference in New Issue
Block a user