Fix mod settings

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

View File

@@ -77,8 +77,8 @@ namespace Torch.Server.ViewModels
public List<ulong> Banned { get => _config.Banned; set => SetValue(x => _config.Banned = x, value); }
//TODO: FIX
//public List<ulong> Mods { get => _config.Mods; set => SetValue(x => _config.Mods = x, value); }
private List<ulong> _mods = new List<ulong>();
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); }