mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
Fix Commander Ninjutsu
This commit is contained in:
parent
44d3276046
commit
dd32a463ec
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…
Reference in a new issue