Skip to content

Commit

Permalink
modsite missing on multiple mods - fix string format
Browse files Browse the repository at this point in the history
  • Loading branch information
Mgamerz committed Jul 1, 2024
1 parent 2934704 commit c37e94c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ private void StartDeployment()
if (nonSubmittableMods.Any())
{
M3L.ShowDialog(window, M3L.GetString(M3L.string_interp_dialog_noModSiteDeployed, string.Join("\n - ", nonSubmittableMods.Select(x => x.ModName))), // do not localize
M3L.ShowDialog(window, M3L.GetString(M3L.string_interp_dialog_noModSiteDeployed, @" - " + string.Join("\n - ", nonSubmittableMods.Select(x => x.ModName))), // do not localize
M3L.GetString(M3L.string_dialog_noModSiteDeployed), MessageBoxButton.OK,
MessageBoxImage.Warning);
}
Expand Down

0 comments on commit c37e94c

Please sign in to comment.