File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -225,6 +225,8 @@ public string ToBase64()
225
225
writer . WriteBits ( ( byte ) config . RpcHashSize , 3 ) ;
226
226
writer . WriteBool ( ForceSamePrefabs ) ;
227
227
writer . WriteBool ( UsePrefabSync ) ;
228
+ writer . WriteBool ( RecycleNetworkIds ) ;
229
+ writer . WriteSinglePacked ( NetworkIdRecycleDelay ) ;
228
230
writer . WriteBool ( EnableNetworkedVar ) ;
229
231
stream . PadStream ( ) ;
230
232
@@ -270,6 +272,8 @@ public void FromBase64(string base64)
270
272
config . RpcHashSize = ( HashSize ) reader . ReadBits ( 3 ) ;
271
273
config . ForceSamePrefabs = reader . ReadBool ( ) ;
272
274
config . UsePrefabSync = reader . ReadBool ( ) ;
275
+ config . RecycleNetworkIds = reader . ReadBool ( ) ;
276
+ config . NetworkIdRecycleDelay = reader . ReadSinglePacked ( ) ;
273
277
config . EnableNetworkedVar = reader . ReadBool ( ) ;
274
278
}
275
279
}
You can’t perform that action at this time.
0 commit comments