mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +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;
|
ZoneChangeGroupEvent zEvent = (ZoneChangeGroupEvent) event;
|
||||||
if (zEvent != null
|
if (zEvent != null
|
||||||
&& Zone.GRAVEYARD == zEvent.getFromZone()
|
&& Zone.GRAVEYARD == zEvent.getFromZone()
|
||||||
&& Zone.EXILED != zEvent.getToZone()
|
&& Zone.EXILED == zEvent.getToZone()
|
||||||
&& zEvent.getCards() != null) {
|
&& zEvent.getCards() != null) {
|
||||||
int cardCount = 0;
|
int cardCount = 0;
|
||||||
for (Card card : zEvent.getCards()) {
|
for (Card card : zEvent.getCards()) {
|
||||||
|
|
Loading…
Reference in a new issue