mirror of
https://github.com/correl/mage.git
synced 2024-11-14 11:09:31 +00:00
Merge pull request #6224 from brookeburkett/TaintedPactReadability
Fix for some readability issues using Tainted Pact
This commit is contained in:
commit
7ea143a9a6
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ class TaintedPactEffect extends OneShotEffect{
|
|||
break;
|
||||
}
|
||||
names.add(card.getName());
|
||||
if (player.chooseUse(outcome, "Put " + card.getName() + "into your hand?", source, game)) {
|
||||
if (player.chooseUse(outcome, "Put " + card.getName() + " into your hand?", source, game)) {
|
||||
//Adds the current card to hand if it is chosen.
|
||||
card.moveToZone(Zone.HAND, source.getSourceId(), game, true);
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue