File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -309,7 +309,7 @@ public void DeserializeFromES3()
309309 if ( AccessTools . Property ( typeof ( Config ) , key ) is { } prop &&
310310 prop . GetCustomAttribute < ES3NonSerializable > ( ) != null )
311311 continue ;
312-
312+
313313 var entry = File [ section , key ] ;
314314
315315 entry . BoxedValue = entry . SettingType . IsEnum
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ public class NetworkSystem : MonoBehaviour
5151 /// <summary>
5252 /// List of client IDs (from Dissonance Voice) which support LCVR networking
5353 /// </summary>
54- private static readonly HashSet < ushort > subscribers = [ ] ;
54+ private readonly HashSet < ushort > subscribers = [ ] ;
5555
5656 /// <summary>
5757 /// List of active channels we have, which can be used to communicate data over
@@ -156,7 +156,7 @@ private IEnumerator SendHandshakeRoutine()
156156
157157 #region PACKET SENDING
158158
159- internal void SendPacket ( MessageType type , byte [ ] payload , params ClientInfo < NfgoConn ? > [ ] targets )
159+ private void SendPacket ( MessageType type , byte [ ] payload , params ClientInfo < NfgoConn ? > [ ] targets )
160160 {
161161 if ( LocalId is not { } sender )
162162 return ;
You can’t perform that action at this time.
0 commit comments