* cleanups

This commit is contained in:
jendave
2011-08-06 04:51:18 +00:00
parent d45ef08d46
commit 64c5081c69
3 changed files with 6 additions and 7 deletions

View File

@@ -15672,7 +15672,7 @@ public class CardFactory implements NewConstants {
public boolean canPlay() {
PlayerZone grave = AllZone.getZone(Constant.Zone.Graveyard, card.getController());
return AllZone.GameAction.isCardInZone(card, grave) && AllZone.GameAction.getLastPlayerToDraw() == card.getController();
return AllZone.GameAction.isCardInZone(card, grave) && AllZone.GameAction.getLastPlayerToDraw().equals(card.getController());
}
};