mirror of
https://github.com/correl/mage.git
synced 2025-03-17 01:06:26 -09:00
fixed Gruesome Discovery
This commit is contained in:
parent
d3080aa66f
commit
60d6e5b1dd
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ class GruesomeDiscoveryEffect extends OneShotEffect<GruesomeDiscoveryEffect> {
|
||||||
for (UUID targetId : targets) {
|
for (UUID targetId : targets) {
|
||||||
Card card = targetPlayer.getHand().get(targetId, game);
|
Card card = targetPlayer.getHand().get(targetId, game);
|
||||||
if (card != null) {
|
if (card != null) {
|
||||||
return targetPlayer.discard(card, source, game);
|
targetPlayer.discard(card, source, game);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue