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

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