Skip to content

Commit

Permalink
[HaCreator] Repack.cs - Fix wz file type (is64Bit) saved for pre 64-b…
Browse files Browse the repository at this point in the history
…it maplestory files saved
  • Loading branch information
lastbattle committed Feb 6, 2024
1 parent 26789ac commit a14fe2a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion HaCreator/GUI/Repack.cs
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,8 @@ private void RepackerThread()

try
{
wzf.SaveToDisk(tmpFile);
bool bSaveAs64BitWzFile = wzf.Is64BitWzFile; // no version number
wzf.SaveToDisk(tmpFile, bSaveAs64BitWzFile);
wzf.Dispose();

if (!bSaveFileInHaCreatorDirectory) // only replace the original file if its saving in the maplestory folder
Expand Down

0 comments on commit a14fe2a

Please sign in to comment.