I'm using a SyncListStruct with 171 items in it. On the host I get 171 items and it works but on the client I get 342 items.
I'm using 5.4.0b14.
SyncListStruct contains double on client. Works on host.
I'm using 5.4.0b14.
Code (CSharp):
- [SyncVar]
- public SyncListHexData hexes = new SyncListHexData();
Code (CSharp):
- public class SyncListHexData : SyncListStruct<HexData> {}
Code (CSharp):