Skip to content

Commit

Permalink
Improve error message
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanFeenstra authored Oct 15, 2024
1 parent 4dfafe1 commit fef08ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/moapplication.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ void MOApplication::externalMessage(const QString& message)
if (InstanceManager::singleton().currentInstance()->gamePlugin() == nullptr) {
// This can happen if MO2 is started with the --pick option and no instance has
// been selected yet, in which case m_core will be null.
reportError(tr("No instance has been selected. Cannot download mod."));
reportError(tr("You need to select an instance before trying to download mods."));
} else {
MessageDialog::showMessage(tr("Download started"), qApp->activeWindow(), false);
m_core->downloadRequestedNXM(message);
Expand Down

0 comments on commit fef08ef

Please sign in to comment.