diff --git a/GameObjects/GameObjects/GameScenario.cs b/GameObjects/GameObjects/GameScenario.cs index ecba3e03..fa2019d6 100644 --- a/GameObjects/GameObjects/GameScenario.cs +++ b/GameObjects/GameObjects/GameScenario.cs @@ -4539,7 +4539,11 @@ private List LoadGameDataFromDataBase(OleDbConnection DbConnection, stri te.CheckArea = (EventCheckAreaKind)((short)reader["CheckAreaKind"]); te.LoadTargetPersonFromString(this.AllPersons, reader["TargetPersons"].ToString()); te.LoadDialogFromString(this.AllPersons, reader["Dialogs"].ToString()); - te.LoadScenBiographyFromString(this.AllPersons, reader["ScenBiography"].ToString()); + try { + te.LoadScenBiographyFromString(this.AllPersons, reader["ScenBiography"].ToString()); + } catch { + + } te.LoadSelfEffectFromString(this.GameCommonData.AllTroopEventEffects, reader["EffectSelf"].ToString()); te.LoadEffectPersonFromString(this.AllPersons, this.GameCommonData.AllTroopEventEffects, reader["EffectPersons"].ToString()); te.LoadEffectAreaFromString(this.GameCommonData.AllTroopEventEffects, reader["EffectAreas"].ToString());