- 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:
Agetian 2017-09-27 03:51:37 +00:00
parent 1f77d51632
commit 360efa643b

View File

@ -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;
}