mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 11:18: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
|
||||
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() {
|
||||
|
||||
Reference in New Issue
Block a user