mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 19:28:01 +00:00
- Fixed Recover to only trigger on other cards.
This commit is contained in:
@@ -375,7 +375,7 @@ public class GameAction {
|
|||||||
// Recover keyword
|
// Recover keyword
|
||||||
if (c.isCreature() && origZone.is(Constant.Zone.Battlefield)) {
|
if (c.isCreature() && origZone.is(Constant.Zone.Battlefield)) {
|
||||||
for (final Card recoverable : c.getOwner().getCardsIn(Zone.Graveyard)) {
|
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") {
|
final SpellAbility abRecover = new Ability(recoverable, "0") {
|
||||||
@Override
|
@Override
|
||||||
public void resolve() {
|
public void resolve() {
|
||||||
|
|||||||
Reference in New Issue
Block a user