You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mod.Instance.Errors.Add($"Can't find a prefab in the asset bundle: {assetsFile.FullName}");
205
+
Mod.Log.LogInfo($"Can't find a prefab in the asset bundle: {assetsFile.FullName}");
206
+
}
207
+
}
208
+
catch(Exceptionex)
209
+
{
210
+
Mod.Instance.Errors.Add($"Could not load assets file: {assetsFile.FullName}");
211
+
Mod.Log.LogInfo($"Could not load assets file: {assetsFile.FullName}");
212
+
Mod.Instance.Errors.Add(ex);
213
+
Mod.Log.LogInfo(ex);
214
+
}
215
+
}
216
+
}
217
+
catch(Exceptionex)
218
+
{
219
+
Mod.Log.LogInfo($"Could not find assets file in the top level directory. This is not bad, this just means no cars were downloaded from the Thunderstore");
0 commit comments