Fix the !!help command. Add configuration attribute to specify hostname

This commit is contained in:
Zontreck 2020-06-15 20:43:10 -07:00
parent fc583603d4
commit ec53b14ec0
3 changed files with 4 additions and 3 deletions

View file

@ -60,6 +60,7 @@ namespace Bot
public double AutoRelogAfterHours = 12;
public int WebServerPort { get; set; } = 35591;
public string WebServerIP { get; set; } = "zontreck.dev";
public Dictionary<UUID, int> BotAdmins { get; set; } = new Dictionary<UUID, int>();