mirror of
https://github.com/correl/mage.git
synced 2025-03-16 17:00:13 -09:00
Fix to ra recently introduced bug of DontUntapInControllersNextUntapStepTargetEffect class.
This commit is contained in:
parent
a9a23026fc
commit
e713cfffea
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ public class DontUntapInControllersNextUntapStepTargetEffect extends ContinuousR
|
||||||
if (staticText != null && !staticText.isEmpty()) {
|
if (staticText != null && !staticText.isEmpty()) {
|
||||||
return staticText;
|
return staticText;
|
||||||
}
|
}
|
||||||
if (targetName.length() > 0) {
|
if (targetName != null && targetName.length() > 0) {
|
||||||
return targetName + " doesn't untap during its controller's next untap step";
|
return targetName + " doesn't untap during its controller's next untap step";
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
Loading…
Add table
Reference in a new issue