Skip to content
This repository has been archived by the owner on Oct 19, 2018. It is now read-only.

Commit

Permalink
向下兼容
Browse files Browse the repository at this point in the history
  • Loading branch information
luiges90 committed Jan 22, 2016
1 parent 451d193 commit 688b511
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion GameObjects/GameObjects/GameScenario.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4539,7 +4539,11 @@ private List<string> 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());
Expand Down

0 comments on commit 688b511

Please sign in to comment.