We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c867868 commit 49292f3Copy full SHA for 49292f3
1 file changed
MLAPI/Configuration/NetworkConfig.cs
@@ -225,6 +225,8 @@ public string ToBase64()
225
writer.WriteBits((byte)config.RpcHashSize, 3);
226
writer.WriteBool(ForceSamePrefabs);
227
writer.WriteBool(UsePrefabSync);
228
+ writer.WriteBool(RecycleNetworkIds);
229
+ writer.WriteSinglePacked(NetworkIdRecycleDelay);
230
writer.WriteBool(EnableNetworkedVar);
231
stream.PadStream();
232
@@ -270,6 +272,8 @@ public void FromBase64(string base64)
270
272
config.RpcHashSize = (HashSize)reader.ReadBits(3);
271
273
config.ForceSamePrefabs = reader.ReadBool();
274
config.UsePrefabSync = reader.ReadBool();
275
+ config.RecycleNetworkIds = reader.ReadBool();
276
+ config.NetworkIdRecycleDelay = reader.ReadSinglePacked();
277
config.EnableNetworkedVar = reader.ReadBool();
278
}
279
0 commit comments