diff options
author | Josiah Glosson <soujournme@gmail.com> | 2023-07-17 17:07:06 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-17 17:07:06 -0500 |
commit | 1fbb41f5e2c4426b1b1e469c78cfbc7e1c4d7999 (patch) | |
tree | 83e4b0bfced66cb3fffdc03725fe508264752d2d | |
parent | 01afa8957f477d347c5103305a038a30edd24ca2 (diff) | |
download | PrismLauncher-1fbb41f5e2c4426b1b1e469c78cfbc7e1c4d7999.tar.gz PrismLauncher-1fbb41f5e2c4426b1b1e469c78cfbc7e1c4d7999.tar.bz2 PrismLauncher-1fbb41f5e2c4426b1b1e469c78cfbc7e1c4d7999.zip |
Make Launch Offline not launch online in 1.6+
Signed-off-by: Josiah Glosson <soujournme@gmail.com>
-rw-r--r-- | launcher/minecraft/auth/AuthSession.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/launcher/minecraft/auth/AuthSession.cpp b/launcher/minecraft/auth/AuthSession.cpp index 6bea74a3..2c06beaa 100644 --- a/launcher/minecraft/auth/AuthSession.cpp +++ b/launcher/minecraft/auth/AuthSession.cpp @@ -26,6 +26,7 @@ bool AuthSession::MakeOffline(QString offline_playername) return false; } session = "-"; + access_token = "0"; player_name = offline_playername; status = PlayableOffline; return true; |