mirror of
https://github.com/correl/mage.git
synced 2025-04-10 09:11:04 -09:00
Merge pull request #5396 from garypwn/fix-commander-ninjutsu
Fix Commander Ninjutsu (fixes #5395)
This commit is contained in:
commit
d4bf09b035
1 changed files with 1 additions and 1 deletions
|
@ -199,8 +199,8 @@ class RevealNinjutsuCardCost extends CostImpl {
|
||||||
for (CommandObject coj : game.getState().getCommand()) {
|
for (CommandObject coj : game.getState().getCommand()) {
|
||||||
if (coj != null && coj.getId().equals(ability.getSourceId())) {
|
if (coj != null && coj.getId().equals(ability.getSourceId())) {
|
||||||
card = game.getCard(ability.getSourceId());
|
card = game.getCard(ability.getSourceId());
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (card != null) {
|
if (card != null) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue