Removed unneeded code Tetsuo Umezawa

Removed commented out code that is no longer needed.
This commit is contained in:
JRHerlehy 2015-02-21 03:00:25 -08:00
parent d4f558c3da
commit f48035ea47

View file

@ -134,9 +134,8 @@ class TetsuoUmezawaEffect extends ContinuousRuleModifiyingEffectImpl {
@Override @Override
public boolean applies(GameEvent event, Ability source, Game game) { public boolean applies(GameEvent event, Ability source, Game game) {
//Card targetCard = game.getCard(event.getTargetId());
StackObject stackObject = (StackObject) game.getStack().getStackObject(event.getSourceId()); StackObject stackObject = (StackObject) game.getStack().getStackObject(event.getSourceId());
if (/*targetCard != null && */stackObject != null && event.getTargetId().equals(source.getSourceId())) { if (stackObject != null && event.getTargetId().equals(source.getSourceId())) {
if (stackObject.getSubtype().contains("Aura")) { if (stackObject.getSubtype().contains("Aura")) {
return true; return true;
} }