- Fixed Recover to only trigger on other cards.

This commit is contained in:
Sloth
2011-11-10 18:50:17 +00:00
parent 68195d0645
commit d2cca0fb0e

View File

@@ -375,7 +375,7 @@ public class GameAction {
// Recover keyword
if (c.isCreature() && origZone.is(Constant.Zone.Battlefield)) {
for (final Card recoverable : c.getOwner().getCardsIn(Zone.Graveyard)) {
if (recoverable.hasStartOfKeyword("Recover")) {
if (recoverable.hasStartOfKeyword("Recover") && !recoverable.equals(c)) {
final SpellAbility abRecover = new Ability(recoverable, "0") {
@Override
public void resolve() {