* Scaleguard Sentinels - Fixed that the +1/+1 was not put on Scaleguard Sentinels if Dragon card was revealed.

This commit is contained in:
LevelX2 2015-11-07 21:39:24 +01:00
parent 43ebe000f0
commit 82d3d52e61

View file

@ -111,7 +111,7 @@ class ScaleguardSentinelsCondition implements Condition {
@Override
public boolean apply(Game game, Ability source) {
Permanent sourcePermanent = game.getPermanentOrLKIBattlefield(source.getSourceId());
Permanent sourcePermanent = game.getPermanentEntering(source.getSourceId());
if (sourcePermanent != null) {
DragonOnTheBattlefieldWhileSpellWasCastWatcher watcher = (DragonOnTheBattlefieldWhileSpellWasCastWatcher) game.getState().getWatchers().get("DragonOnTheBattlefieldWhileSpellWasCastWatcher");
return (watcher != null && watcher.castWithConditionTrue(sourcePermanent.getSpellAbility().getId()));