ignore file not found errors

This commit is contained in:
Jack Baron 2022-07-22 17:50:54 +01:00
parent e7a3347a37
commit 3e8170b34f
No known key found for this signature in database
GPG Key ID: CD10BCEEC646C064
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);