Skip to content

Commit

Permalink
Fixed a compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
eezstreet committed Apr 26, 2021
1 parent ba38293 commit 7af7393
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions D2RModding-StrEdit/Workspace.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ public Workspace(string dir)
directory = dir;

// load up!
resurrectedBanks = MakeBanks(dir + "\\strings");
legacyBanks = MakeBanks(dir + "\\strings-legacy");
resurrectedBanks = MakeBanks(dir + "\\strings", null);
legacyBanks = MakeBanks(dir + "\\strings-legacy", resurrectedBanks);

// parse the next_string_id.txt crap
string next_valid_id = File.ReadAllText(dir + "\\next_string_id.txt");
Expand Down

0 comments on commit 7af7393

Please sign in to comment.