Undo throw exception if manifest file doesn't exist

This commit is contained in:
Mitchell Kutchuk 2015-06-20 20:15:32 -07:00
parent 2dd36b28ec
commit c413c8b325

View File

@ -95,11 +95,9 @@ namespace TrueCraft.Core.World
if (file.RootTag.Contains("Name"))
world.Name = file.RootTag["Name"].StringValue;
world.ChunkProvider = provider;
return world;
}
throw new FileNotFoundException();
return world;
}
/// <summary>