diff --git a/release/README.txt b/release/README.txt index dbe9cbfcad..47bcce1015 100644 --- a/release/README.txt +++ b/release/README.txt @@ -55,6 +55,7 @@ Release 1.16 (July 25, 2011) - fixed: AI getting stuck when there are many creatures on the battlefield, needs more testing - fixed: GUI may become unresponse, especially when playing against monte carlo AI +- fixed: several crash bugs in monte carlo AI (crash free in more than 100,000 self play games) - added version of minimax that cheats - popup card info no longer disappears when the phase changes diff --git a/src/magic/ui/viewer/ImageCardListViewer.java b/src/magic/ui/viewer/ImageCardListViewer.java index 80ddfa4163..1f9d72fe38 100644 --- a/src/magic/ui/viewer/ImageCardListViewer.java +++ b/src/magic/ui/viewer/ImageCardListViewer.java @@ -171,7 +171,7 @@ public class ImageCardListViewer extends JPanel implements ChoiceViewer { //show that card is a valid choice //instead of adding a choiceColor transparent layer, - //draw a one pixel border of the choiceColor + //draw a border of the choiceColor if (validChoices.contains(card)) { //g2d.setPaint(choiceColor); //g2d.fillRect(x1-1,y1-1,CARD_WIDTH+2,CARD_HEIGHT+2);