mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
Cleanup
This commit is contained in:
@@ -5521,7 +5521,6 @@ public class Card extends GameEntity implements Comparable<Card>, IHasSVars {
|
|||||||
public final void setRandomFoil() {
|
public final void setRandomFoil() {
|
||||||
setFoil(CardEdition.getRandomFoil(getSetCode()));
|
setFoil(CardEdition.getRandomFoil(getSetCode()));
|
||||||
}
|
}
|
||||||
|
|
||||||
public final void setFoil(final int f) {
|
public final void setFoil(final int f) {
|
||||||
currentState.setSVar("Foil", Integer.toString(f));
|
currentState.setSVar("Foil", Integer.toString(f));
|
||||||
}
|
}
|
||||||
@@ -5565,9 +5564,8 @@ public class Card extends GameEntity implements Comparable<Card>, IHasSVars {
|
|||||||
return pairedWith != null;
|
return pairedWith != null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Card getMeldedWith() { return meldedWith; }
|
public Card getMeldedWith() { return meldedWith; }
|
||||||
|
public void setMeldedWith(Card meldedWith) { this.meldedWith = meldedWith; }
|
||||||
public void setMeldedWith(Card meldedWith) { this.meldedWith = meldedWith; }
|
|
||||||
|
|
||||||
public final int getDamageDoneThisTurn() {
|
public final int getDamageDoneThisTurn() {
|
||||||
int sum = 0;
|
int sum = 0;
|
||||||
|
|||||||
@@ -732,7 +732,6 @@ public final class StaticAbilityContinuous {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (layer == StaticAbilityLayer.ABILITIES) {
|
if (layer == StaticAbilityLayer.ABILITIES) {
|
||||||
|
|
||||||
List<SpellAbility> addedAbilities = Lists.newArrayList();
|
List<SpellAbility> addedAbilities = Lists.newArrayList();
|
||||||
List<ReplacementEffect> addedReplacementEffects = Lists.newArrayList();
|
List<ReplacementEffect> addedReplacementEffects = Lists.newArrayList();
|
||||||
List<Trigger> addedTrigger = Lists.newArrayList();
|
List<Trigger> addedTrigger = Lists.newArrayList();
|
||||||
|
|||||||
Reference in New Issue
Block a user