mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
- Fixed Orim's Prayer
This commit is contained in:
parent
76fb6182ad
commit
d9121080a0
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,3 @@
|
|||
|
||||
package mage.cards.o;
|
||||
|
||||
import java.util.UUID;
|
||||
|
@ -58,7 +57,8 @@ class OrimsPrayerTriggeredAbility extends TriggeredAbilityImpl {
|
|||
|
||||
@Override
|
||||
public boolean checkTrigger(GameEvent event, Game game) {
|
||||
return game.getCombat().getDefenders().contains(getControllerId());
|
||||
return game.getCombat().getDefenders().contains(getControllerId())
|
||||
&& game.getCombat().getAttackers().size() > 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue