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() {
|
||||
return this.stack.peekFirst().getSpellAbility();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* <p>
|
||||
|
||||
@@ -136,8 +136,7 @@ public enum VStack implements IVDoc<CStack> {
|
||||
|
||||
stackTARs.clear();
|
||||
boolean isFirst = true;
|
||||
for (int i = 0;i<stack.size();i++) {
|
||||
final SpellAbilityStackInstance spell = stack.getStack().get(i);
|
||||
for (final SpellAbilityStackInstance spell : stack) {
|
||||
scheme = getSpellColor(spell);
|
||||
|
||||
String isOptional = spell.getSpellAbility().isOptionalTrigger() && spell.getSourceCard().getController().equals(viewer) ? "(OPTIONAL) " : "";
|
||||
|
||||
Reference in New Issue
Block a user