[VOW] Implemented Gutter Skulker / Gutter Shortcut

This commit is contained in:
Evan Kranzler 2021-11-06 19:30:49 -04:00
parent 79592acfd9
commit 1f2fa8d8dc
4 changed files with 128 additions and 1 deletions

View file

@ -14,7 +14,7 @@ public enum SourceAttackingAloneCondition implements Condition {
@Override
public boolean apply(Game game, Ability source) {
return game.getCombat().attacksAlone() && game.getCombat().getAttackers().get(0).equals(source.getSourceId());
return game.getCombat().attacksAlone() && game.getCombat().getAttackers().contains(source.getSourceId());
}
@Override