mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
Minor usability improvement
This commit is contained in:
parent
82aae29fbc
commit
5c8c77cd28
1 changed files with 2 additions and 3 deletions
|
@ -156,9 +156,8 @@ class RagingRiverEffect extends OneShotEffect {
|
|||
FilterCreaturePermanent filter = new FilterCreaturePermanent();
|
||||
Player defender = game.getPlayer(combatGroup.getDefendingPlayerId());
|
||||
if (defender != null) {
|
||||
if (left.isEmpty() && right.isEmpty() && game.getOpponents(controller.getId()).size() < 2) {
|
||||
// shortcut in case of a single opponent not having any creatures (since he has no further way of acquiring blockers with left/right labels,
|
||||
// and Portal Mage can't potentially redirect the creature into an opponent with labeled blockers)
|
||||
if (left.isEmpty() && right.isEmpty()) {
|
||||
// shortcut in case of no labeled blockers available
|
||||
filter.add(Predicates.not(new AbilityPredicate(FlyingAbility.class)));
|
||||
} else {
|
||||
List<Permanent> leftLog = new ArrayList<>();
|
||||
|
|
Loading…
Reference in a new issue