Add server description to config uI and adjusted the mod blocks to fit (#268)

This commit is contained in:
N1Ran
2019-01-08 17:30:42 -05:00
committed by Brant Martin
parent 844d4be96a
commit 90479dfea2
2 changed files with 9 additions and 4 deletions

View File

@@ -90,6 +90,8 @@ namespace Torch.Server.ViewModels
public string ServerName { get => _config.ServerName; set => SetValue(x => _config.ServerName = x, value); }
public string ServerDescription { get => _config.ServerDescription; set => SetValue(x => _config.ServerDescription = x, value); }
public bool PauseGameWhenEmpty { get => _config.PauseGameWhenEmpty; set => SetValue(x => _config.PauseGameWhenEmpty = x, value); }
public string PremadeCheckpointPath { get => _config.PremadeCheckpointPath; set => SetValue(x => _config.PremadeCheckpointPath = x, value); }