From 5b18f682d612eb1c7385dbf5f7822adfbdc9841c Mon Sep 17 00:00:00 2001 From: JohnCorby Date: Thu, 6 Oct 2022 16:05:36 -0700 Subject: [PATCH] also ignore REMOTE_CameraDetector --- QSB/Player/Patches/VolumePatches.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/QSB/Player/Patches/VolumePatches.cs b/QSB/Player/Patches/VolumePatches.cs index 01129840..84131603 100644 --- a/QSB/Player/Patches/VolumePatches.cs +++ b/QSB/Player/Patches/VolumePatches.cs @@ -53,6 +53,6 @@ internal class VolumePatches : QSBPatch // which would actually apply the shock affects to the entire planet / sector // // TODO: also do this with remote probes - return hitObj.name != "REMOTE_PlayerDetector"; + return hitObj.name is not ("REMOTE_PlayerDetector" or "REMOTE_CameraDetector"); } }