This commit is contained in:
tool4EvEr
2021-05-23 23:23:42 +02:00
parent 9232042b02
commit 9e9bc5193f
2 changed files with 2 additions and 5 deletions

View File

@@ -5521,7 +5521,6 @@ public class Card extends GameEntity implements Comparable<Card>, IHasSVars {
public final void setRandomFoil() {
setFoil(CardEdition.getRandomFoil(getSetCode()));
}
public final void setFoil(final int f) {
currentState.setSVar("Foil", Integer.toString(f));
}
@@ -5566,7 +5565,6 @@ public class Card extends GameEntity implements Comparable<Card>, IHasSVars {
}
public Card getMeldedWith() { return meldedWith; }
public void setMeldedWith(Card meldedWith) { this.meldedWith = meldedWith; }
public final int getDamageDoneThisTurn() {

View File

@@ -732,7 +732,6 @@ public final class StaticAbilityContinuous {
}
if (layer == StaticAbilityLayer.ABILITIES) {
List<SpellAbility> addedAbilities = Lists.newArrayList();
List<ReplacementEffect> addedReplacementEffects = Lists.newArrayList();
List<Trigger> addedTrigger = Lists.newArrayList();