mirror of
https://github.com/correl/mage.git
synced 2025-01-12 03:00:13 +00:00
fixed Quicksilver Fountain issue
This commit is contained in:
parent
a39b15a228
commit
0ddc791f08
1 changed files with 1 additions and 1 deletions
|
@ -115,7 +115,7 @@ class QuicksilverFountainEffect extends OneShotEffect {
|
|||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
Player player = game.getPlayer(targetPointer.getFirst(game, source));
|
||||
Player player = game.getPlayer(game.getActivePlayerId());
|
||||
if (player != null) {
|
||||
Permanent landChosen = game.getPermanent(source.getFirstTarget());
|
||||
landChosen.addCounters(CounterType.FLOOD.createInstance(), source, game);
|
||||
|
|
Loading…
Reference in a new issue