mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-11 16:26:22 +00:00
@@ -6812,7 +6812,7 @@ public class Card extends GameEntity implements Comparable<Card>, IHasSVars {
|
||||
for (SpellAbility sa : getSpellAbilities()) {
|
||||
//adventure spell check
|
||||
if (isAdventureCard() && sa.isAdventure()) {
|
||||
if (getExiledWith() != null && CardStateName.Adventure.equals(getExiledWith().getCurrentStateName()))
|
||||
if (getExiledWith() != null && getExiledWith().equals(this) && CardStateName.Adventure.equals(getExiledWith().getCurrentStateName()))
|
||||
continue; // skip since it's already on adventure
|
||||
}
|
||||
//add alternative costs as additional spell abilities
|
||||
|
||||
Reference in New Issue
Block a user