From 039ca169b0a411cfff51cb39b038dcc54bcbd7b6 Mon Sep 17 00:00:00 2001
From: Miepee <38186597+Miepee@users.noreply.github.com>
Date: Sun, 18 Apr 2021 20:24:39 +0200
Subject: [PATCH] fixed updater not actually updating the launcher
---
AM2RLauncher/AM2RLauncher/MainForm/MainForm.Methods.cs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/AM2RLauncher/AM2RLauncher/MainForm/MainForm.Methods.cs b/AM2RLauncher/AM2RLauncher/MainForm/MainForm.Methods.cs
index cc9fdb8..b24554c 100644
--- a/AM2RLauncher/AM2RLauncher/MainForm/MainForm.Methods.cs
+++ b/AM2RLauncher/AM2RLauncher/MainForm/MainForm.Methods.cs
@@ -1093,7 +1093,7 @@ namespace AM2RLauncher
/// Full Path to the Directory you want to copy to. If the Directory does not exist, it will be created.
/// Specify if Files should be overwritten or not
/// Specify if you want to copy Sub-Directories as well.
- private static void DirectoryCopy(string sourceDirName, string destDirName, bool overwriteFiles = true, bool copySubDirs = true)
+ public static void DirectoryCopy(string sourceDirName, string destDirName, bool overwriteFiles = true, bool copySubDirs = true)
{
// Get the subdirectories for the specified directory.
DirectoryInfo dir = new DirectoryInfo(sourceDirName);