Xenoborg jammer now ignores xenoborg associated frequencies (#38005)

* stop jammer from jamming radio of certain frequency

* xenoborg jammer no longer jamms xenoborg radio

* stop jammer from jamming device network signals from certain frequency

* xenoborg jammer no longer jamms xenoborg camera signal

* the old tale of the missing ;

* backwards

* fix issue with readonly

* comments to the frequencies excluded

* triple typo

* clearer summary

* add summary

* fixed 4th hidden typo
This commit is contained in:
Samuka-C
2025-09-24 19:02:46 -03:00
committed by GitHub
parent 4555b72608
commit ea3c44686c
9 changed files with 77 additions and 6 deletions

View File

@@ -23,4 +23,10 @@ public sealed partial class DeviceNetworkJammerComponent : Component
[DataField, AutoNetworkedField]
public HashSet<string> JammableNetworks = [];
/// <summary>
/// Device networks frequencies that wont be jammed.
/// </summary>
[DataField]
public HashSet<uint> FrequenciesExcluded = [];
}