Fix for MP

This commit is contained in:
Brant Martin
2018-05-16 07:09:05 -04:00
parent d8915d1893
commit 38d2f1b62e
22 changed files with 57 additions and 280 deletions

View File

@@ -77,7 +77,8 @@ namespace Torch.Server.ViewModels
public List<ulong> Banned { get => _config.Banned; set => SetValue(x => _config.Banned = x, value); }
public List<ulong> Mods { get => _config.Mods; set => SetValue(x => _config.Mods = x, value); }
//TODO: FIX
//public List<ulong> Mods { get => _config.Mods; set => SetValue(x => _config.Mods = x, value); }
public int AsteroidAmount { get => _config.AsteroidAmount; set => SetValue(x => _config.AsteroidAmount = x, value); }