mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
GUI, preferences: removed rare/useless settings:
* Show ability picker forced - removed and keep enabled for all; * Show turn info in logs - removed and keep enabled for all;
This commit is contained in:
parent
4d89fcd72d
commit
754e5fc41a
9 changed files with 58 additions and 292 deletions
|
|
@ -12,7 +12,6 @@ public class UserData implements Serializable {
|
|||
|
||||
protected int groupId;
|
||||
protected int avatarId;
|
||||
protected boolean showAbilityPickerForced;
|
||||
protected boolean allowRequestShowHandCards;
|
||||
protected boolean confirmEmptyManaPool;
|
||||
protected UserSkipPrioritySteps userSkipPrioritySteps;
|
||||
|
|
@ -40,7 +39,6 @@ public class UserData implements Serializable {
|
|||
|
||||
public UserData(UserGroup userGroup,
|
||||
int avatarId,
|
||||
boolean showAbilityPickerForced,
|
||||
boolean allowRequestShowHandCards,
|
||||
boolean confirmEmptyManaPool,
|
||||
UserSkipPrioritySteps userSkipPrioritySteps,
|
||||
|
|
@ -57,7 +55,6 @@ public class UserData implements Serializable {
|
|||
String userIdStr) {
|
||||
this.groupId = userGroup.getGroupId();
|
||||
this.avatarId = avatarId;
|
||||
this.showAbilityPickerForced = showAbilityPickerForced;
|
||||
this.allowRequestShowHandCards = allowRequestShowHandCards;
|
||||
this.userSkipPrioritySteps = userSkipPrioritySteps;
|
||||
this.confirmEmptyManaPool = confirmEmptyManaPool;
|
||||
|
|
@ -82,7 +79,6 @@ public class UserData implements Serializable {
|
|||
public void update(UserData userData) {
|
||||
this.groupId = userData.groupId;
|
||||
this.avatarId = userData.avatarId;
|
||||
this.showAbilityPickerForced = userData.showAbilityPickerForced;
|
||||
this.allowRequestShowHandCards = userData.allowRequestShowHandCards;
|
||||
this.userSkipPrioritySteps = userData.userSkipPrioritySteps;
|
||||
this.confirmEmptyManaPool = userData.confirmEmptyManaPool;
|
||||
|
|
@ -105,7 +101,6 @@ public class UserData implements Serializable {
|
|||
UserGroup.DEFAULT,
|
||||
0,
|
||||
false,
|
||||
false,
|
||||
true,
|
||||
new UserSkipPrioritySteps(),
|
||||
getDefaultFlagName(),
|
||||
|
|
@ -138,14 +133,6 @@ public class UserData implements Serializable {
|
|||
this.avatarId = avatarId;
|
||||
}
|
||||
|
||||
public boolean isShowAbilityPickerForced() {
|
||||
return showAbilityPickerForced;
|
||||
}
|
||||
|
||||
public void setShowAbilityPickerForced(boolean showAbilityPickerForced) {
|
||||
this.showAbilityPickerForced = showAbilityPickerForced;
|
||||
}
|
||||
|
||||
public boolean isAllowRequestHandToAll() {
|
||||
return allowRequestShowHandCards;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue