diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-05-08 21:43:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-08 21:43:06 +0200 |
commit | 1e34de98aba8bc3fd74443f556506c4779c2f8fd (patch) | |
tree | 2d113be4a1b888470e11a5e72576522d85e0b865 /launcher/minecraft/auth/flows/Mojang.cpp | |
parent | 7b46f50cf1c5709406298424a404a66c948c7a0c (diff) | |
parent | cab40026f2a1253539d0d8e363f1aea32b054bd1 (diff) | |
download | PrismLauncher-1e34de98aba8bc3fd74443f556506c4779c2f8fd.tar.gz PrismLauncher-1e34de98aba8bc3fd74443f556506c4779c2f8fd.tar.bz2 PrismLauncher-1e34de98aba8bc3fd74443f556506c4779c2f8fd.zip |
Merge pull request #534 from DioEgizio/stable
Diffstat (limited to 'launcher/minecraft/auth/flows/Mojang.cpp')
-rw-r--r-- | launcher/minecraft/auth/flows/Mojang.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/launcher/minecraft/auth/flows/Mojang.cpp b/launcher/minecraft/auth/flows/Mojang.cpp index 4661dbe2..b86b0936 100644 --- a/launcher/minecraft/auth/flows/Mojang.cpp +++ b/launcher/minecraft/auth/flows/Mojang.cpp @@ -1,7 +1,7 @@ #include "Mojang.h" #include "minecraft/auth/steps/YggdrasilStep.h" -#include "minecraft/auth/steps/MinecraftProfileStep.h" +#include "minecraft/auth/steps/MinecraftProfileStepMojang.h" #include "minecraft/auth/steps/MigrationEligibilityStep.h" #include "minecraft/auth/steps/GetSkinStep.h" @@ -10,7 +10,7 @@ MojangRefresh::MojangRefresh( QObject *parent ) : AuthFlow(data, parent) { m_steps.append(new YggdrasilStep(m_data, QString())); - m_steps.append(new MinecraftProfileStep(m_data)); + m_steps.append(new MinecraftProfileStepMojang(m_data)); m_steps.append(new MigrationEligibilityStep(m_data)); m_steps.append(new GetSkinStep(m_data)); } @@ -21,7 +21,7 @@ MojangLogin::MojangLogin( QObject *parent ): AuthFlow(data, parent), m_password(password) { m_steps.append(new YggdrasilStep(m_data, m_password)); - m_steps.append(new MinecraftProfileStep(m_data)); + m_steps.append(new MinecraftProfileStepMojang(m_data)); m_steps.append(new MigrationEligibilityStep(m_data)); m_steps.append(new GetSkinStep(m_data)); } |