mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 10:48:00 +00:00
- Attempt to fix cards like It that Betrays
This commit is contained in:
@@ -392,7 +392,7 @@ public class WrappedAbility extends Ability implements ISpellAbility {
|
|||||||
if (ev.getValue() instanceof Card) {
|
if (ev.getValue() instanceof Card) {
|
||||||
Card card = (Card) ev.getValue();
|
Card card = (Card) ev.getValue();
|
||||||
Card current = game.getCardState(card);
|
Card current = game.getCardState(card);
|
||||||
if (current.getTimestamp() != card.getTimestamp()) {
|
if (card.isInPlay() && current.isInPlay() && current.getTimestamp() != card.getTimestamp()) {
|
||||||
sa.getTriggeringObjects().remove(ev.getKey());
|
sa.getTriggeringObjects().remove(ev.getKey());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user