Fix mod settings
This commit is contained in:
@@ -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); }
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user