mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
Rewind little fix
This commit is contained in:
parent
cd6c671837
commit
f9934e11a7
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ public class UntapLandsEffect extends OneShotEffect<UntapLandsEffect> {
|
|||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
TargetLandPermanent target = new TargetLandPermanent(1, amount, new FilterLandPermanent(), true);
|
||||
TargetLandPermanent target = new TargetLandPermanent(0, amount, new FilterLandPermanent(), true);
|
||||
if (target.canChoose(source.getControllerId(), game)) {
|
||||
if (target.choose(Constants.Outcome.Untap, source.getControllerId(), source.getSourceId(), game)) {
|
||||
for (Object targetId : target.getTargets()) {
|
||||
|
|
Loading…
Reference in a new issue