mirror of
https://github.com/correl/mage.git
synced 2025-04-04 01:06:04 -09:00
Fixed error with card texts
This commit is contained in:
parent
841ae27e82
commit
8db2e63ae4
1 changed files with 6 additions and 5 deletions
|
@ -4,10 +4,7 @@ import mage.abilities.Ability;
|
||||||
import mage.constants.Outcome;
|
import mage.constants.Outcome;
|
||||||
import mage.game.Game;
|
import mage.game.Game;
|
||||||
import mage.game.events.GameEvent;
|
import mage.game.events.GameEvent;
|
||||||
import mage.target.targetpointer.FirstTargetPointer;
|
import mage.target.targetpointer.*;
|
||||||
import mage.target.targetpointer.SecondTargetPointer;
|
|
||||||
import mage.target.targetpointer.TargetPointer;
|
|
||||||
import mage.target.targetpointer.ThirdTargetPointer;
|
|
||||||
import org.apache.log4j.Logger;
|
import org.apache.log4j.Logger;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
@ -170,9 +167,13 @@ public class Targets extends ArrayList<Target> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (targetPointer instanceof FixedTarget || targetPointer instanceof FixedTargets) {
|
||||||
|
// fixed target = direct ID, you can't find target type and description
|
||||||
|
proccessed = true;
|
||||||
|
}
|
||||||
|
|
||||||
if (!proccessed) {
|
if (!proccessed) {
|
||||||
logger.error("Unknown target pointer " + (targetPointer != null ? targetPointer : "null"), new Throwable());
|
logger.error("Unknown target pointer " + (targetPointer != null ? targetPointer : "null"), new Throwable());
|
||||||
// TODO: add other target types?
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
|
|
Loading…
Add table
Reference in a new issue