mirror of
https://github.com/magefree/mage.git
synced 2026-01-19 09:49:54 -08:00
fix error
This commit is contained in:
parent
0c27211f11
commit
b02f05c0c5
1 changed files with 1 additions and 1 deletions
|
|
@ -56,7 +56,7 @@ public class SearchLibraryPutInHandOrOnBattlefieldEffect extends SearchEffect {
|
|||
for (UUID cardId : target.getTargets()) {
|
||||
Card card = game.getCard(cardId);
|
||||
if (card != null) {
|
||||
if (card.hasName(nameToPutOnBattlefield, currentGame)) {
|
||||
if (card.hasName(nameToPutOnBattlefield, game)) {
|
||||
askToPutOntoBf = true;
|
||||
cardToPutOnBf = card;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue