forked from External/mage
* Fury Charm - Fixed that Suspended Cards could not be cast, if last counter was removed with Fury Charm.
This commit is contained in:
parent
5d12d7f1bf
commit
277f9363fd
4 changed files with 10 additions and 9 deletions
|
|
@ -50,7 +50,8 @@ public class RemoveCounterSourceEffect extends OneShotEffect<RemoveCounterSource
|
|||
StringBuilder sb = new StringBuilder();
|
||||
sb.append("remove ").append(Integer.toString(counter.getCount())).append(" ").append(counter.getName()).append(" counters from {this}");
|
||||
staticText = sb.toString();
|
||||
} else
|
||||
} else {
|
||||
staticText = "remove a " + counter.getName() + " counter from {this}";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue