mirror of
https://github.com/Relintai/mtg-forge-ios.git
synced 2024-11-14 04:17:19 +01:00
- Fixed an occasionally broken orderMoveToZoneList (fixes Sensei's Divining Top).
git-svn-id: http://svn.slightlymagic.net/forge/trunk@35783 269b9781-a132-4a9b-9d4e-f004f1b56b58
This commit is contained in:
parent
1f77d51632
commit
360efa643b
@ -690,7 +690,7 @@ public class PlayerControllerHuman extends PlayerController implements IGameCont
|
||||
public CardCollectionView orderMoveToZoneList(final CardCollectionView cards, final ZoneType destinationZone, final SpellAbility source) {
|
||||
if (source == null || source.getApi() != ApiType.ReorderZone) {
|
||||
if (destinationZone == ZoneType.Graveyard
|
||||
&& !FModel.getPreferences().getPrefBoolean(FPref.UI_ALLOW_ORDER_GRAVEYARD_WHEN_NEEDED) || !game.isGraveyardOrdered()) {
|
||||
&& (!FModel.getPreferences().getPrefBoolean(FPref.UI_ALLOW_ORDER_GRAVEYARD_WHEN_NEEDED) || !game.isGraveyardOrdered())) {
|
||||
// Ordering not necessary
|
||||
return cards;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user