Skip to content

Commit

Permalink
Fix for lists refresh
Browse files Browse the repository at this point in the history
  • Loading branch information
harliq committed Mar 13, 2020
1 parent 8b693fa commit 8fdccc6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions AceCreator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ protected override void Startup()
Globals.Init("AceCreator", Host, Core);
LoadWindow();
LoadPathSettings();
JsonChoiceListLoadFiles();
SqlChoiceListLoadFiles();
//JsonChoiceListLoadFiles();
//SqlChoiceListLoadFiles();
RefreshAllLists();

//Initialize the view.
Expand Down Expand Up @@ -607,6 +607,8 @@ private void LoadRecipeSQLChoiceList()
}
private void RefreshAllLists()
{
JsonChoiceListLoadFiles();
SqlChoiceListLoadFiles();
LoadLandBlockJSONChoiceList();
LoadLandBlockSQLChoiceList();
LoadQuestJSONChoiceList();
Expand Down
2 changes: 1 addition & 1 deletion Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.3.4")]
[assembly: AssemblyFileVersion("1.1.0.0")]
[assembly: AssemblyFileVersion("1.1.0.1")]

0 comments on commit 8fdccc6

Please sign in to comment.