From 8a236eb86e1fe76c73ecb8875c78c440647b5381 Mon Sep 17 00:00:00 2001 From: Thomas Date: Sat, 26 Dec 2020 12:31:11 -0800 Subject: [PATCH] Changed warning message for duplicate mods --- BTD6 Mod Manager.wpf/Launcher.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BTD6 Mod Manager.wpf/Launcher.cs b/BTD6 Mod Manager.wpf/Launcher.cs index d9bd636..bc1462c 100644 --- a/BTD6 Mod Manager.wpf/Launcher.cs +++ b/BTD6 Mod Manager.wpf/Launcher.cs @@ -42,7 +42,8 @@ private static bool AreModsValid() if (!isDuplicate) continue; - Logger.Log($"Error! You are trying to load \"{melonModName}\" twice. You need to disable one to continue.", OutputType.Both); + Logger.Log($"Error! You are trying to load \"{melonModName}\" more than once. " + + $"You can only have one of \"{melonModName}\" active at a time.", OutputType.Both); return false; }