Skip to content

Commit

Permalink
Changed warning message for duplicate mods
Browse files Browse the repository at this point in the history
  • Loading branch information
gurrenm3 committed Dec 26, 2020
1 parent f0db5d2 commit 8a236eb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion BTD6 Mod Manager.wpf/Launcher.cs
Expand Up @@ -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;
}

Expand Down

0 comments on commit 8a236eb

Please sign in to comment.