Skip to content

Commit

Permalink
Merge pull request #55 from harliq/SpellTableNotResorted
Browse files Browse the repository at this point in the history
Spellbook Sort, EmoteScript Update
  • Loading branch information
harliq authored Jul 20, 2022
2 parents ade0440 + deb7e71 commit b651130
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion WeenieFab/WeenieFab/FileOps.cs
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ public void ReadSQLFile(string filepath)

spellDataTable = DecodeSql.DecodeThreeValuesFloat(spellBookBlob, spellbookPattern);
spellDataTable.AcceptChanges();
spellDataTable = ResortDataTable(spellDataTable, "Property", "ASC");
//spellDataTable = ResortDataTable(spellDataTable, "Property", "ASC");
dgSpell.DataContext = spellDataTable;

}
Expand Down
6 changes: 3 additions & 3 deletions WeenieFab/WeenieFab/WeenieFab.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<UseWPF>true</UseWPF>
<Version>0.9.9.909</Version>
<Version>0.9.9.91</Version>
<ApplicationIcon>WeenieFabAppIcon.ico</ApplicationIcon>
<AssemblyVersion>0.9.9.909</AssemblyVersion>
<FileVersion>0.9.9.909</FileVersion>
<AssemblyVersion>0.9.9.91</AssemblyVersion>
<FileVersion>0.9.9.91</FileVersion>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit b651130

Please sign in to comment.