mirror of
https://github.com/magefree/mage.git
synced 2026-01-24 20:29:19 -08:00
Fixed UnleashAbility, DevourEffect, Urabrask the Hidden, Due Respect, Orb of Dreams replacing EntersTheBattlefield instead of only modifying it.
This commit is contained in:
parent
f0f52124d5
commit
12a5efa506
5 changed files with 3 additions and 5 deletions
|
|
@ -84,7 +84,7 @@ public class OrbOfDreams extends CardImpl<OrbOfDreams> {
|
|||
if (permanent != null) {
|
||||
permanent.setTapped(true);
|
||||
}
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -90,7 +90,7 @@ class DueRespectEffect extends ReplacementEffectImpl<DueRespectEffect> {
|
|||
if (permanent != null) {
|
||||
permanent.setTapped(true);
|
||||
}
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@ class UrabraskTheHiddenEffect extends ReplacementEffectImpl<UrabraskTheHiddenEff
|
|||
if (target != null) {
|
||||
target.setTapped(true);
|
||||
}
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue