mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
* Gadwick, the Wizened - fixed that it doesn't draw cards on ETB;
This commit is contained in:
parent
9ec6aa83c4
commit
9deaa4c227
1 changed files with 2 additions and 1 deletions
|
@ -74,7 +74,8 @@ enum GadwickTheWizenedValue implements DynamicValue {
|
|||
|
||||
@Override
|
||||
public int calculate(Game game, Ability sourceAbility, Effect effect) {
|
||||
GadwickTheWizenedWatcher watcher = game.getState().getWatcher(GadwickTheWizenedWatcher.class);
|
||||
// watcher in card's scope
|
||||
GadwickTheWizenedWatcher watcher = game.getState().getWatcher(GadwickTheWizenedWatcher.class, sourceAbility.getSourceId());
|
||||
if (watcher == null) {
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue