Merge pull request #125 from Cyberboss/FixAdminsList

Fixes being unable to modify admins in the control panel
This commit is contained in:
Jordan Brown
2017-07-07 15:50:19 -04:00
committed by GitHub
+1
View File
@@ -203,6 +203,7 @@ namespace TGControlPanel
wip.WatchdogChannels = new List<string>(WDChannelsTextbox.Text.Split('\n'));
wip.DevChannels = new List<string>(DevChannelsTextbox.Text.Split('\n'));
wip.GameChannels = new List<string>(GameChannelsTextbox.Text.Split('\n'));
wip.AdminList = new List<string>(ChatAdminsTextBox.Text.Split('\n'));
wip.Enabled = ChatEnabledCheckbox.Checked;
res = Server.GetComponent<ITGChat>().SetProviderInfo(wip);