Skip to content

Commit

Permalink
fix loading v83 files
Browse files Browse the repository at this point in the history
  • Loading branch information
Souna committed Sep 2, 2023
1 parent 9141b6e commit 1bd469d
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions MapleLib/WzLib/WzDirectory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -271,11 +271,8 @@ internal void ParseDirectory(bool lazyParse = false)

foreach (WzDirectory subdir in subDirs)
{
if (subdir.Checksum != 0)
{
reader.BaseStream.Position = subdir.offset;
subdir.ParseDirectory();
}
reader.BaseStream.Position = subdir.offset;
subdir.ParseDirectory();
}
}

Expand Down

0 comments on commit 1bd469d

Please sign in to comment.