mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
Fixed bug #3797
This commit is contained in:
parent
d6896984c1
commit
60d3fb62ba
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ class SpreadingPlagueEffect extends OneShotEffect {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean apply(Game game, Ability source) {
|
public boolean apply(Game game, Ability source) {
|
||||||
Permanent creature = game.getPermanent(targetPointer.getFirst(game, source));
|
Permanent creature = game.getPermanentOrLKIBattlefield(targetPointer.getFirst(game, source));
|
||||||
if (creature != null) {
|
if (creature != null) {
|
||||||
ObjectColor color = creature.getColor(game);
|
ObjectColor color = creature.getColor(game);
|
||||||
for (Permanent permanent : game.getBattlefield().getActivePermanents(FILTER, source.getControllerId(), game)) {
|
for (Permanent permanent : game.getBattlefield().getActivePermanents(FILTER, source.getControllerId(), game)) {
|
||||||
|
|
Loading…
Reference in a new issue