- Fixed a misnamed function.

This commit is contained in:
Sloth
2012-01-26 19:06:40 +00:00
parent 71df7a8dd7
commit a297b40e47
2 changed files with 2 additions and 2 deletions

View File

@@ -387,7 +387,7 @@ public class CombatUtil {
* a {@link forge.Combat} object. * a {@link forge.Combat} object.
* @return a boolean. * @return a boolean.
*/ */
public static boolean finishedMandatotyBlocks(final Combat combat) { public static boolean finishedMandatoryBlocks(final Combat combat) {
final CardList blockers = AllZoneUtil.getCreaturesInPlay(AllZone.getHumanPlayer()); final CardList blockers = AllZoneUtil.getCreaturesInPlay(AllZone.getHumanPlayer());
final CardList attackers = new CardList(combat.getAttackers()); final CardList attackers = new CardList(combat.getAttackers());

View File

@@ -90,7 +90,7 @@ public class InputBlock extends Input {
/** {@inheritDoc} */ /** {@inheritDoc} */
@Override @Override
public final void selectButtonOK() { public final void selectButtonOK() {
if (CombatUtil.finishedMandatotyBlocks(AllZone.getCombat())) { if (CombatUtil.finishedMandatoryBlocks(AllZone.getCombat())) {
// Done blocking // Done blocking
ButtonUtil.reset(); ButtonUtil.reset();