Thanks for the updated release, works great on the demo :)
Here is a temporary fix for when you try to create a room and d.c
in your Navigator.cs
Find
Code:
if (dPrivCats != null)
{
foreach (DataRow Row in dPrivCats.Rows)
_privateCategories.Add((int) Row["id"], new FlatCat((int)Row["id"], (string)Row["caption"], (int)Row["min_rank"], 0, (uint)Row["user_max"]));
}
Replace with
Code:
if (dPrivCats != null)
{
foreach (DataRow Row in dPrivCats.Rows)
_privateCategories.Add((int) Row["id"], new FlatCat((int)Row["id"], (string)Row["caption"], (int)Row["min_rank"], 0,0));
}
Thanks to @
KyleeIsProzZ working with me to create the temp fix