mirror of
https://github.com/correl/mage.git
synced 2024-11-26 19:19:54 +00:00
* Scaleguard Sentinels - Fixed that the +1/+1 was not put on Scaleguard Sentinels if Dragon card was revealed.
This commit is contained in:
parent
43ebe000f0
commit
82d3d52e61
1 changed files with 1 additions and 1 deletions
|
@ -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()));
|
||||
|
|
Loading…
Reference in a new issue