mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
* Fixed text of planeswalker to keep to only include type not name.
This commit is contained in:
parent
351feb5a99
commit
2b8737b026
1 changed files with 1 additions and 1 deletions
|
@ -1948,7 +1948,7 @@ public abstract class GameImpl implements Game, Serializable {
|
|||
Player controller = this.getPlayer(planeswalker.getControllerId());
|
||||
if (controller != null) {
|
||||
Target targetPlaneswalkerToKeep = new TargetPermanent(filterPlaneswalker);
|
||||
targetPlaneswalkerToKeep.setTargetName(planeswalker.getName() + " to keep?");
|
||||
targetPlaneswalkerToKeep.setTargetName(planeswalkertype.toString() + " to keep?");
|
||||
controller.chooseTarget(Outcome.Benefit, targetPlaneswalkerToKeep, null, this);
|
||||
for (Permanent dupPlaneswalker : this.getBattlefield().getActivePermanents(filterPlaneswalker, planeswalker.getControllerId(), this)) {
|
||||
if (!targetPlaneswalkerToKeep.getTargets().contains(dupPlaneswalker.getId())) {
|
||||
|
|
Loading…
Reference in a new issue