mirror of
https://github.com/Sanae6/SmoOnlineServer.git
synced 2024-11-22 03:05:16 +00:00
ignore file not found errors
This commit is contained in:
parent
783b876e09
commit
24a34c35a1
1 changed files with 4 additions and 0 deletions
|
@ -49,6 +49,10 @@ async Task LoadShines()
|
||||||
|
|
||||||
if (loadedShines is not null) shineBag = loadedShines;
|
if (loadedShines is not null) shineBag = loadedShines;
|
||||||
}
|
}
|
||||||
|
catch (FileNotFoundException)
|
||||||
|
{
|
||||||
|
// Ignore
|
||||||
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
consoleLogger.Error(ex);
|
consoleLogger.Error(ex);
|
||||||
|
|
Loading…
Reference in a new issue