diff --git a/Peeping Tom/TargetWatcher.cs b/Peeping Tom/TargetWatcher.cs index 5345792..b4cf3a2 100644 --- a/Peeping Tom/TargetWatcher.cs +++ b/Peeping Tom/TargetWatcher.cs @@ -20,7 +20,7 @@ namespace PeepingTom { private long soundLastPlayed = 0; private int lastTargetAmount = 0; - public readonly Mutex currentMutex = new Mutex(); + private readonly Mutex currentMutex = new Mutex(); private PlayerCharacter[] current = Array.Empty(); public IReadOnlyCollection CurrentTargeters { get { @@ -31,7 +31,7 @@ namespace PeepingTom { } } - public readonly Mutex previousMutex = new Mutex(); + private readonly Mutex previousMutex = new Mutex(); private readonly List previousTargeters = new List(); public IReadOnlyCollection PreviousTargeters { get {