Fix wrong reset

This commit is contained in:
tool4EvEr
2024-01-28 22:09:37 +01:00
committed by Chris H
parent 9695efdb12
commit 4d0980ba0c
2 changed files with 3 additions and 4 deletions

View File

@@ -52,7 +52,7 @@ public class CostAdjustment {
boolean isStateChangeToFaceDown = false; boolean isStateChangeToFaceDown = false;
if (sa.isSpell()) { if (sa.isSpell()) {
if (sa.isCastFaceDown()) { if (sa.isCastFaceDown() && !host.isFaceDown()) {
// Turn face down to apply cost modifiers correctly // Turn face down to apply cost modifiers correctly
host.turnFaceDownNoUpdate(); host.turnFaceDownNoUpdate();
isStateChangeToFaceDown = true; isStateChangeToFaceDown = true;
@@ -181,7 +181,7 @@ public class CostAdjustment {
boolean isStateChangeToFaceDown = false; boolean isStateChangeToFaceDown = false;
if (sa.isSpell()) { if (sa.isSpell()) {
if (sa.isCastFaceDown()) { if (sa.isCastFaceDown() && !originalCard.isFaceDown()) {
// Turn face down to apply cost modifiers correctly // Turn face down to apply cost modifiers correctly
originalCard.turnFaceDownNoUpdate(); originalCard.turnFaceDownNoUpdate();
isStateChangeToFaceDown = true; isStateChangeToFaceDown = true;

View File

@@ -2,6 +2,5 @@ Name:Lumithread Field
ManaCost:1 W ManaCost:1 W
Types:Enchantment Types:Enchantment
K:Morph:1 W K:Morph:1 W
S:Mode$ Continuous | Affected$ Creature.YouCtrl | AddToughness$ 1 | CheckSVar$ X | SVarCompare$ EQ1 | Description$ Creatures you control get +0/+1. S:Mode$ Continuous | Affected$ Creature.YouCtrl | AddToughness$ 1 | Description$ Creatures you control get +0/+1.
SVar:X:Count$Valid Card.Self+nonCreature+faceUp
Oracle:Creatures you control get +0/+1.\nMorph {1}{W} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.) Oracle:Creatures you control get +0/+1.\nMorph {1}{W} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)