forked from External/mage
* UnearthAbility - Fixed that unearthed creatures had no haste.
This commit is contained in:
parent
ef83ec2874
commit
9c6db9405a
4 changed files with 28 additions and 21 deletions
|
|
@ -75,7 +75,7 @@ public class SacrificeTargetEffect extends OneShotEffect<SacrificeTargetEffect>
|
|||
|
||||
@Override
|
||||
public String getText(Mode mode) {
|
||||
if ("".equals(staticText) && !mode.getTargets().isEmpty()) {
|
||||
if (staticText.isEmpty() && !mode.getTargets().isEmpty()) {
|
||||
if (mode.getTargets().get(0).getNumberOfTargets() == 1) {
|
||||
return "The controller of target " + mode.getTargets().get(0).getTargetName() + " sacrifices it";
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue