From 95cf83ee68523a6514a8ec6b5fc556181c594857 Mon Sep 17 00:00:00 2001 From: Sebastian Ullrich Date: Tue, 26 Aug 2014 01:08:13 +0200 Subject: [PATCH] Wizard: fix missing file copy --- Wizard/Program.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Wizard/Program.cs b/Wizard/Program.cs index 5620633..53665bd 100644 --- a/Wizard/Program.cs +++ b/Wizard/Program.cs @@ -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"))) {