- Removed two unused variables in the combat class.

This commit is contained in:
Sloth
2011-11-09 19:58:31 +00:00
parent 23141df2a3
commit e530e245b8

View File

@@ -43,9 +43,6 @@ public class Combat {
private Player attackingPlayer = null;
private Player defendingPlayer = null;
private CardList attackersWithLure = new CardList();
private CardList canBlockAttackerWithLure = new CardList();
/**
* <p>
* Constructor for Combat.
@@ -72,9 +69,6 @@ public class Combat {
attackingPlayer = null;
defendingPlayer = null;
attackersWithLure.clear();
canBlockAttackerWithLure.clear();
defenders.clear();
currentDefender = 0;
nextDefender = 0;