mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-01-25 17:22:55 +08:00
Fix white screen after logging in
This commit is contained in:
parent
0387992c42
commit
9b7293272b
@ -76,7 +76,6 @@ public class GenshinPlayer {
|
|||||||
private TeamManager teamManager;
|
private TeamManager teamManager;
|
||||||
private PlayerGachaInfo gachaInfo;
|
private PlayerGachaInfo gachaInfo;
|
||||||
private PlayerProfile playerProfile;
|
private PlayerProfile playerProfile;
|
||||||
private MpSettingType mpSetting = MpSettingType.MP_SETTING_ENTER_AFTER_APPLY;
|
|
||||||
private boolean showAvatar;
|
private boolean showAvatar;
|
||||||
private ArrayList<AvatarProfileData> shownAvatars;
|
private ArrayList<AvatarProfileData> shownAvatars;
|
||||||
private Set<Integer> rewardedLevels;
|
private Set<Integer> rewardedLevels;
|
||||||
@ -381,7 +380,7 @@ public class GenshinPlayer {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public MpSettingType getMpSetting() {
|
public MpSettingType getMpSetting() {
|
||||||
return mpSetting;
|
return MpSettingType.MP_SETTING_ENTER_AFTER_APPLY; // TEMP
|
||||||
}
|
}
|
||||||
|
|
||||||
public synchronized Int2ObjectMap<CoopRequest> getCoopRequests() {
|
public synchronized Int2ObjectMap<CoopRequest> getCoopRequests() {
|
||||||
@ -400,10 +399,6 @@ public class GenshinPlayer {
|
|||||||
return clientAbilityInitFinishHandler;
|
return clientAbilityInitFinishHandler;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setMpSetting(MpSettingType mpSetting) {
|
|
||||||
this.mpSetting = mpSetting;
|
|
||||||
}
|
|
||||||
|
|
||||||
public AvatarStorage getAvatars() {
|
public AvatarStorage getAvatars() {
|
||||||
return avatars;
|
return avatars;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user