Harness the Storm - Fixed wrong ability copy method leading to not correct functioning (fixes #1686).

This commit is contained in:
LevelX2 2016-04-06 19:09:55 +02:00
parent 709ea95a5b
commit 9c8258c54b
2 changed files with 64 additions and 12 deletions

View file

@ -103,8 +103,8 @@ class HarnessTheStormTriggeredAbility extends SpellCastControllerTriggeredAbilit
}
@Override
public SpellCastControllerTriggeredAbility copy() {
return super.copy(); //To change body of generated methods, choose Tools | Templates.
public HarnessTheStormTriggeredAbility copy() {
return new HarnessTheStormTriggeredAbility(this);
}
}