mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00: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…
Reference in a new issue