ignore file not found errors

This commit is contained in:
Jack Baron 2022-07-22 17:50:54 +01:00 committed by Sanae
parent 783b876e09
commit 24a34c35a1
1 changed files with 4 additions and 0 deletions

View File

@ -49,6 +49,10 @@ async Task LoadShines()
if (loadedShines is not null) shineBag = loadedShines;
}
catch (FileNotFoundException)
{
// Ignore
}
catch (Exception ex)
{
consoleLogger.Error(ex);