also ignore REMOTE_CameraDetector

This commit is contained in:
JohnCorby 2022-10-06 16:05:36 -07:00
parent 43d3ef07fa
commit 5b18f682d6

View File

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