mirror of
https://github.com/correl/mage.git
synced 2025-01-14 19:12:07 +00:00
[MH2] fixed Scour the Desert (fixes #8435)
This commit is contained in:
parent
f4cdf0e361
commit
b83a20a0f1
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ class ScourTheDesertEffect extends OneShotEffect {
|
|||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
Player player = game.getPlayer(source.getFirstTarget());
|
||||
Player player = game.getPlayer(source.getControllerId());
|
||||
Card card = game.getCard(source.getFirstTarget());
|
||||
if (player == null || card == null) {
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue