mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00: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()) {
|
||||
return staticText;
|
||||
}
|
||||
if (targetName.length() > 0) {
|
||||
if (targetName != null && targetName.length() > 0) {
|
||||
return targetName + " doesn't untap during its controller's next untap step";
|
||||
}
|
||||
else {
|
||||
|
|
Loading…
Reference in a new issue