remove try/catch in SyncBase.Init, i promise you don't want this

This commit is contained in:
JohnCorby 2022-02-02 19:22:01 -08:00
parent 65199f0da0
commit b4bab95474

View File

@ -164,16 +164,7 @@ namespace QSB.Syncs
protected virtual void Init()
{
try
{
AttachedTransform = InitAttachedTransform();
}
catch (Exception ex)
{
DebugLog.ToConsole($"Exception when Init-ing {this} : {ex}", MessageType.Error);
return;
}
AttachedTransform = InitAttachedTransform();
IsInitialized = true;
}