Fix mod settings

This commit is contained in:
Brant Martin
2018-07-18 22:35:11 -04:00
parent 0f06ee5688
commit 2b413ef609

View File

@@ -76,9 +76,9 @@ namespace Torch.Server.ViewModels
public List<string> Administrators { get => _config.Administrators; set => SetValue(x => _config.Administrators = x, value); } public List<string> Administrators { get => _config.Administrators; set => SetValue(x => _config.Administrators = x, value); }
public List<ulong> Banned { get => _config.Banned; set => SetValue(x => _config.Banned = x, value); } public List<ulong> Banned { get => _config.Banned; set => SetValue(x => _config.Banned = x, value); }
//TODO: FIX private List<ulong> _mods = new List<ulong>();
//public List<ulong> Mods { get => _config.Mods; set => SetValue(x => _config.Mods = x, value); } public List<ulong> Mods { get => _mods; set => SetValue(x => _mods = x, value); }
public int AsteroidAmount { get => _config.AsteroidAmount; set => SetValue(x => _config.AsteroidAmount = x, value); } public int AsteroidAmount { get => _config.AsteroidAmount; set => SetValue(x => _config.AsteroidAmount = x, value); }