Minor formatting.

This commit is contained in:
LevelX2 2013-10-01 14:39:38 +02:00
parent 721a411aad
commit 19714312cd
3 changed files with 12 additions and 6 deletions

View file

@ -53,10 +53,12 @@ public class FirstCombatDamageStep extends Step<FirstCombatDamageStep> {
@Override
public boolean skipStep(Game game, UUID activePlayerId) {
if (game.getCombat().noAttackers())
if (game.getCombat().noAttackers()) {
return true;
if (!game.getCombat().hasFirstOrDoubleStrike(game))
}
if (!game.getCombat().hasFirstOrDoubleStrike(game)) {
return true;
}
return super.skipStep(game, activePlayerId);
}