Fix forensic scanner leaking fingerprints onto the scanning object if you use the verb (#39964)
Update ForensicScannerSystem.cs
This commit is contained in:
parent
941e0daca7
commit
6a22ee7d39
1 changed files with 3 additions and 1 deletions
|
|
@ -125,7 +125,9 @@ namespace Content.Server.Forensics
|
|||
Act = () => StartScan(uid, component, args.User, args.Target),
|
||||
IconEntity = GetNetEntity(uid),
|
||||
Text = Loc.GetString("forensic-scanner-verb-text"),
|
||||
Message = Loc.GetString("forensic-scanner-verb-message")
|
||||
Message = Loc.GetString("forensic-scanner-verb-message"),
|
||||
// This is important because if its true using the scanner will count as touching the object.
|
||||
DoContactInteraction = false
|
||||
};
|
||||
|
||||
args.Verbs.Add(verb);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue