mirror of
https://github.com/LorisYounger/VPet.ModMaker.git
synced 2024-08-30 18:22:21 +00:00
新增模组载入异常
This commit is contained in:
parent
fff24cf87b
commit
c6716aa8fe
@ -245,13 +245,27 @@ public class ModMakerWindowVM
|
|||||||
MessageBox.Show("模组载入失败:\n{0}".Translate(ex));
|
MessageBox.Show("模组载入失败:\n{0}".Translate(ex));
|
||||||
pendingHandler.Close();
|
pendingHandler.Close();
|
||||||
}
|
}
|
||||||
if (loader is not null)
|
if (loader is null)
|
||||||
|
return;
|
||||||
|
ModInfoModel? modInfo = null;
|
||||||
|
try
|
||||||
{
|
{
|
||||||
var modInfo = new ModInfoModel(loader);
|
modInfo = new ModInfoModel(loader);
|
||||||
EditMod(modInfo);
|
EditMod(modInfo);
|
||||||
pendingHandler.Close();
|
|
||||||
ModEditWindow.InitializeData();
|
ModEditWindow.InitializeData();
|
||||||
}
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
pendingHandler.Close();
|
||||||
|
ModEditWindow?.Close();
|
||||||
|
ModMakerWindow.Show();
|
||||||
|
MessageBox.Show("模组载入失败:\n{0}".Translate(ex));
|
||||||
|
ModInfoModel.Current = null;
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
pendingHandler.Close();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user