I've posted this on answers as well, but here's a much more concise version of my problem. Here's the relevant code.
Is there a reason why my host is sending commands but not my remote client?
Code (CSharp):
- public SyncListInt UserDeckPositions = new SyncListInt();
- public SyncListInt UserDeckLineup = new SyncListInt();
- public SyncListInt UserDeckDugout = new SyncListInt();
- public List<int> ClientUserDeckPositions = new List<int>();
- public List<int> ClientUserDeckLineup = new List<int>();
- public List<int> ClientUserDeckDugout = new List<int>();...