Some small fixes/improvements.

This commit is contained in:
Ottermandias 2023-05-27 13:56:43 +02:00
parent 96aaefd3e2
commit f938531e21
6 changed files with 13 additions and 16 deletions

View file

@ -1,3 +1,4 @@
using System;
using System.IO;
using System.Linq;
using System.Text;
@ -86,8 +87,9 @@ public class Penumbra : IDalamudPlugin
if (_characterUtility.Ready)
_residentResources.Reload();
}
catch
{
catch(Exception ex)
{
Log.Error($"Error constructing Penumbra, Disposing again:\n{ex}");
Dispose();
throw;
}