Merge pull request #6224 from brookeburkett/TaintedPactReadability

Fix for some readability issues using Tainted Pact
This commit is contained in:
Oleg Agafonov 2020-01-24 15:18:54 +01:00 committed by GitHub
commit 7ea143a9a6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;