Fixes from Cerberus and other development

This commit is contained in:
DarkFeather
2017-03-01 08:31:47 -06:00
parent 870b8c6715
commit 60de762c8b
6 changed files with 190 additions and 13 deletions

View File

@@ -15,6 +15,7 @@ namespace AniNIX.Shared {
/// </summary>
/// <param name="filename">The Config file</param>
public Configure(String filename) {
if (!File.Exists(filename)) throw new Exception("File not found.");
StreamReader fileReader = new StreamReader(filename);
String line;
while (true) {