Skip to content

Commit 6461248

Browse files
committed
Misc tiny cleanup
1 parent d6b0424 commit 6461248

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Source/Config.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

Source/Networking/NetworkSystem.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)