Skip to content

Commit

Permalink
Wizard: fix missing file copy
Browse files Browse the repository at this point in the history
  • Loading branch information
Kha committed Aug 25, 2014
1 parent f783ff0 commit 95cf83e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Wizard/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ static void Main()
TryCopy(Path.Combine(destPath, file), Path.Combine(file));
}
TryCopy(Path.Combine(destPath, "TowerFall.exe"), Path.Combine("Original", "TowerFall.exe"));
File.Copy(Path.Combine("Original", "TowerFall.exe"), "TowerFall.exe", overwrite: true);
Patcher.Patcher.Patch("Mod.dll");

foreach (string file in RelativeEnumerateFiles(Path.Combine(destPath, "Content", "Atlas"))) {
Expand Down

0 comments on commit 95cf83e

Please sign in to comment.