Added Thieves' Auction.

Changed Detain reminder to blue text.
This commit is contained in:
emerald000 2016-04-17 19:22:33 -04:00
parent 31e82d1dc4
commit a4af95d775
3 changed files with 183 additions and 1 deletions

View file

@ -136,7 +136,7 @@ class DetainRestrictionEffect extends RestrictionEffect {
for (UUID targetId : this.getTargetPointer().getTargets(game, source)) {
Permanent permanent = game.getPermanent(targetId);
if (permanent != null) {
permanent.addInfo(new StringBuilder("detain").append(getId()).toString(), "[Detained]", game);
permanent.addInfo("detain" + getId(), CardUtil.addToolTipMarkTags("Detained"), game);
}
}
}