mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
* Fixed a bug with rule text generation (e.g. for Lapse of Certainty).
This commit is contained in:
parent
0708525cfa
commit
350436dee2
1 changed files with 4 additions and 0 deletions
|
@ -96,12 +96,16 @@ public class CounterTargetWithReplacementEffect extends OneShotEffect {
|
|||
switch (zoneDetail) {
|
||||
case BOTTOM:
|
||||
sb.append("the bottom");
|
||||
break;
|
||||
case TOP:
|
||||
sb.append("top");
|
||||
break;
|
||||
case CHOOSE:
|
||||
sb.append("top or bottom");
|
||||
break;
|
||||
case NONE:
|
||||
sb.append("<not allowed value>");
|
||||
break;
|
||||
}
|
||||
sb.append(" of its owner's library instead of into that player's graveyard");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue