mirror of
https://github.com/AngelAuraMC/Amethyst-Android.git
synced 2025-09-15 07:39:00 -04:00
Try to fix replacement == null
This commit is contained in:
parent
53961676e4
commit
64ac84276e
@ -141,9 +141,9 @@ public final class Tools
|
||||
gameDir.mkdirs();
|
||||
|
||||
Map<String, String> varArgMap = new ArrayMap<String, String>();
|
||||
varArgMap.put("auth_access_token", profile.accessToken);
|
||||
varArgMap.put("auth_access_token", profile.accessToken == null ? "0" : profile.accessToken);
|
||||
varArgMap.put("auth_player_name", username);
|
||||
varArgMap.put("auth_uuid", profile.profileId);
|
||||
varArgMap.put("auth_uuid", profile.profileId == null ? "0" : profile.profileId);
|
||||
varArgMap.put("assets_root", Tools.ASSETS_PATH);
|
||||
varArgMap.put("assets_index_name", versionInfo.assets);
|
||||
varArgMap.put("game_assets", Tools.ASSETS_PATH);
|
||||
|
Loading…
x
Reference in New Issue
Block a user