* Fixed a bug with rule text generation (e.g. for Lapse of Certainty).

This commit is contained in:
LevelX2 2017-01-13 22:38:04 +01:00
parent 0708525cfa
commit 350436dee2

View file

@ -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");
}