]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Fix forensic scanner leaking fingerprints onto the scanning object if you use the...
authorMr. 27 <45323883+Dutch-VanDerLinde@users.noreply.github.com>
Sat, 30 Aug 2025 14:00:46 +0000 (10:00 -0400)
committerGitHub <noreply@github.com>
Sat, 30 Aug 2025 14:00:46 +0000 (16:00 +0200)
Update ForensicScannerSystem.cs

Content.Server/Forensics/Systems/ForensicScannerSystem.cs

index 87c19c688dfa4a06a3d6f2595f3476bfa87dd42e..b75c0ae32af06d76f511713cfb1694bcdead799c 100644 (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);