* Lightning Storm - Fixed that opponents of the caster can't activate the ability on the stack.

This commit is contained in:
LevelX2 2016-02-08 23:40:32 +01:00
parent 9221e4eb64
commit e5812a850b
3 changed files with 106 additions and 13 deletions

View file

@ -191,7 +191,7 @@ public abstract class ActivatedAbilityImpl extends AbilityImpl implements Activa
//20091005 - 602.5d/602.5e
if (timing == TimingRule.INSTANT || game.canPlaySorcery(playerId)
|| game.getContinuousEffects().asThough(sourceId, AsThoughEffectType.ACTIVATE_AS_INSTANT, this, controllerId, game)) {
if (costs.canPay(this, sourceId, controllerId, game) && canChooseTarget(game)) {
if (costs.canPay(this, sourceId, playerId, game) && canChooseTarget(game)) {
this.activatorId = playerId;
return true;
}