Minor fixes to client mod

This commit is contained in:
Brant Martin
2018-07-18 19:25:08 -04:00
parent b8b0a0fcce
commit c889854818
2 changed files with 29 additions and 11 deletions

View File

@@ -24,7 +24,14 @@ namespace Torch.Mod
protected override void UnloadData()
{
ModCommunication.Unregister();
try
{
ModCommunication.Unregister();
}
catch
{
//session unloading, don't care
}
}
}
}