Fix forensic scanner leaking fingerprints onto the scanning object if you use the verb (#39964)

Update ForensicScannerSystem.cs
This commit is contained in:
Mr. 27 2025-08-30 10:00:46 -04:00 committed by GitHub
parent 941e0daca7
commit 6a22ee7d39
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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