mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 03:08:02 +00:00
compile errors
This commit is contained in:
@@ -844,7 +844,6 @@ public class MagicStack extends MyObservable implements Iterable<SpellAbilitySta
|
|||||||
public final SpellAbility peekAbility() {
|
public final SpellAbility peekAbility() {
|
||||||
return this.stack.peekFirst().getSpellAbility();
|
return this.stack.peekFirst().getSpellAbility();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>
|
* <p>
|
||||||
|
|||||||
@@ -136,8 +136,7 @@ public enum VStack implements IVDoc<CStack> {
|
|||||||
|
|
||||||
stackTARs.clear();
|
stackTARs.clear();
|
||||||
boolean isFirst = true;
|
boolean isFirst = true;
|
||||||
for (int i = 0;i<stack.size();i++) {
|
for (final SpellAbilityStackInstance spell : stack) {
|
||||||
final SpellAbilityStackInstance spell = stack.getStack().get(i);
|
|
||||||
scheme = getSpellColor(spell);
|
scheme = getSpellColor(spell);
|
||||||
|
|
||||||
String isOptional = spell.getSpellAbility().isOptionalTrigger() && spell.getSourceCard().getController().equals(viewer) ? "(OPTIONAL) " : "";
|
String isOptional = spell.getSpellAbility().isOptionalTrigger() && spell.getSourceCard().getController().equals(viewer) ? "(OPTIONAL) " : "";
|
||||||
|
|||||||
Reference in New Issue
Block a user