diff options
author | Petr Mrázek <peterix@gmail.com> | 2015-08-24 00:56:45 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2015-08-24 00:56:45 +0200 |
commit | bc917668ff9ab193ed66b390dd4f0e0bcef4cb43 (patch) | |
tree | 129d298e57732bc97161a0074124bfa983f1cdff /logic/minecraft/OneSixInstance.cpp | |
parent | 961c1c61b8b8d0e1242edcc59a4db97ad6fb7d7b (diff) | |
download | MultiMC-bc917668ff9ab193ed66b390dd4f0e0bcef4cb43.tar MultiMC-bc917668ff9ab193ed66b390dd4f0e0bcef4cb43.tar.gz MultiMC-bc917668ff9ab193ed66b390dd4f0e0bcef4cb43.tar.lz MultiMC-bc917668ff9ab193ed66b390dd4f0e0bcef4cb43.tar.xz MultiMC-bc917668ff9ab193ed66b390dd4f0e0bcef4cb43.zip |
GH-1133 fix bad java path detection some more
Diffstat (limited to 'logic/minecraft/OneSixInstance.cpp')
-rw-r--r-- | logic/minecraft/OneSixInstance.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/logic/minecraft/OneSixInstance.cpp b/logic/minecraft/OneSixInstance.cpp index 9a7ef99b..6cea55d2 100644 --- a/logic/minecraft/OneSixInstance.cpp +++ b/logic/minecraft/OneSixInstance.cpp @@ -29,6 +29,7 @@ #include <launch/steps/PostLaunchCommand.h> #include <launch/steps/TextPrint.h> #include <launch/steps/ModMinecraftJar.h> +#include <launch/steps/CheckJava.h> #include "minecraft/OneSixProfileStrategy.h" #include "MMCZip.h" @@ -243,6 +244,10 @@ std::shared_ptr<LaunchTask> OneSixInstance::createLaunchTask(AuthSessionPtr sess { process->appendStep(std::make_shared<TextPrint>(pptr, "Minecraft folder is:\n" + minecraftRoot() + "\n\n", MessageLevel::MultiMC)); } + { + auto step = std::make_shared<CheckJava>(pptr); + process->appendStep(step); + } // run pre-launch command if that's needed if(getPreLaunchCommand().size()) { |