mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Removed unneeded code Tetsuo Umezawa
Removed commented out code that is no longer needed.
This commit is contained in:
parent
d4f558c3da
commit
f48035ea47
1 changed files with 1 additions and 2 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue