Unsupported enum type UnityEngine.Networking.Types.NetworkID

So I keep getting this error

Unsupported enum type ‘System.Collections.Generic.List’ used for field ‘games’ in class ‘RemoteGames’

functionally all of my code appears to be working correctly but this error is getting me down :frowning: Why is this occurring? Here’s the code that appears to be generating that error

public List<NetworkID> games = new List<NetworkID>();

foreach (MatchDesc match in matches.matches) {
	if (!games.Contains(match.networkId)) {
		games.Add(match.networkId);
		SetupGame(match);
	} 
}

What is unsupported about that? It certainly appears to function…

According to this it’s a known bug http://forum.unity3d.com/threads/unsupported-enum-type-unityengine-networking-types-networkid.359462/