mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
fixed Rakshasa Vizier issue (fixes #5479)
This commit is contained in:
parent
d20872dcb9
commit
d27765863d
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ class RakshasaVizierTriggeredAbility extends TriggeredAbilityImpl {
|
|||
ZoneChangeGroupEvent zEvent = (ZoneChangeGroupEvent) event;
|
||||
if (zEvent != null
|
||||
&& Zone.GRAVEYARD == zEvent.getFromZone()
|
||||
&& Zone.EXILED != zEvent.getToZone()
|
||||
&& Zone.EXILED == zEvent.getToZone()
|
||||
&& zEvent.getCards() != null) {
|
||||
int cardCount = 0;
|
||||
for (Card card : zEvent.getCards()) {
|
||||
|
|
Loading…
Reference in a new issue