mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
* Orah, Skyclave Hierophant - Fixed that his ability was also triggerd for opponents clerics dying (fixes #7196).
This commit is contained in:
parent
8c33fa863c
commit
3bc3ca6a50
1 changed files with 3 additions and 1 deletions
|
|
@ -66,8 +66,10 @@ class OrahSkyclaveHierophantTriggeredAbility extends TriggeredAbilityImpl {
|
|||
public boolean checkTrigger(GameEvent event, Game game) {
|
||||
ZoneChangeEvent zEvent = (ZoneChangeEvent) event;
|
||||
if (!zEvent.isDiesEvent()
|
||||
|| !zEvent.getTarget().isControlledBy(getControllerId())
|
||||
|| (!zEvent.getTarget().hasSubtype(SubType.CLERIC, game)
|
||||
&& !zEvent.getTarget().getId().equals(getSourceId()))) {
|
||||
&& !zEvent.getTarget().getId().equals(getSourceId()))
|
||||
) {
|
||||
return false;
|
||||
}
|
||||
FilterCard filterCard = new FilterCard(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue