diff options
author | Petr Mrázek <peterix@gmail.com> | 2013-07-14 18:33:31 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2013-07-14 18:33:31 +0200 |
commit | 33b9b25da7d3d29f949c9418295de257d437c9f8 (patch) | |
tree | 65eea838f89ed182636890c1ce6f678ad4fc1276 /gui | |
parent | c96ac2460522b9567a10831bcd1d8a6bc9f36d9d (diff) | |
download | MultiMC-33b9b25da7d3d29f949c9418295de257d437c9f8.tar MultiMC-33b9b25da7d3d29f949c9418295de257d437c9f8.tar.gz MultiMC-33b9b25da7d3d29f949c9418295de257d437c9f8.tar.lz MultiMC-33b9b25da7d3d29f949c9418295de257d437c9f8.tar.xz MultiMC-33b9b25da7d3d29f949c9418295de257d437c9f8.zip |
More work on the downloader and 1.6 instance creation
Diffstat (limited to 'gui')
-rw-r--r-- | gui/mainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/mainwindow.cpp b/gui/mainwindow.cpp index 5336b12c..8ba988c5 100644 --- a/gui/mainwindow.cpp +++ b/gui/mainwindow.cpp @@ -416,7 +416,7 @@ void MainWindow::onLoginComplete(LoginResponse response) { Q_ASSERT_X(m_activeInst != NULL, "onLoginComplete", "no active instance is set"); - if (!m_activeInst->shouldUpdateGame()) + if (!m_activeInst->shouldUpdate()) { launchInstance(m_activeInst, response); } |