mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-27 05:09:17 +00:00
Fix white screen after logging in
This commit is contained in:
parent
e3034326c1
commit
be307fe5f0
@ -17,7 +17,7 @@ message AvatarDataNotify {
|
||||
repeated AvatarInfo avatar_list = 1;
|
||||
map<uint32, AvatarTeam> avatar_team_map = 2;
|
||||
uint32 cur_avatar_team_id = 3;
|
||||
uint64 choose_avatar_guid = 4;
|
||||
fixed64 choose_avatar_guid = 4;
|
||||
repeated uint64 temp_avatar_guid_list = 5;
|
||||
repeated uint32 owned_flycloak_list = 6;
|
||||
repeated uint32 owned_costume_list = 7;
|
||||
|
@ -76,7 +76,6 @@ public class GenshinPlayer {
|
||||
private TeamManager teamManager;
|
||||
private PlayerGachaInfo gachaInfo;
|
||||
private PlayerProfile playerProfile;
|
||||
private MpSettingType mpSetting = MpSettingType.MP_SETTING_ENTER_AFTER_APPLY;
|
||||
private boolean showAvatar;
|
||||
private ArrayList<AvatarProfileData> shownAvatars;
|
||||
private Set<Integer> rewardedLevels;
|
||||
@ -381,7 +380,7 @@ public class GenshinPlayer {
|
||||
}
|
||||
|
||||
public MpSettingType getMpSetting() {
|
||||
return mpSetting;
|
||||
return MpSettingType.MP_SETTING_ENTER_AFTER_APPLY; // TEMP
|
||||
}
|
||||
|
||||
public synchronized Int2ObjectMap<CoopRequest> getCoopRequests() {
|
||||
@ -400,10 +399,6 @@ public class GenshinPlayer {
|
||||
return clientAbilityInitFinishHandler;
|
||||
}
|
||||
|
||||
public void setMpSetting(MpSettingType mpSetting) {
|
||||
this.mpSetting = mpSetting;
|
||||
}
|
||||
|
||||
public AvatarStorage getAvatars() {
|
||||
return avatars;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user