SpawnHandler and SpawnGroup
Hello,

Did the conversion of List<SpawnGroup> to List<ISpawnGroup> in the Spawnhandler is legit @Wulf.
If yes how i can get the List<SpawnGroup> from the new Spawnhandler?
I have no idea, I haven't looked at the Rust changes for that.
Still need help, if someone got a solution.
Before "SpawnHandler.Instance.SpawnGroups" was a List<SpawnGroup> and it's now a List<ISpawnGroup>.
If someone has a solution to get/generate a list of SpawnGroup, i'll glad acept it^^
In response to sami37 ():
Still need help, if someone got a solution.
Before "SpawnHandler.Instance.SpawnGroups" was a Li...
for (int i = 0; i < SpawnHandler.Instance.SpawnGroups.Count; i++)
{
	var group = (SpawnHandler.Instance.SpawnGroups[i] as SpawnGroup);
	Debug.Log(group.name);
}

The fast way without a list-convertion.