if things on the stack have a sourceCard of some kind of land, make sure the stack has a color (brownish; also used for artifacts). This would be for things like the triggered ability of City of Brass.

This commit is contained in:
slapshot5
2012-01-01 07:09:40 +00:00
parent e3997d9c71
commit 54d61061a0

View File

@@ -322,7 +322,7 @@ public class ViewTabber extends FRoundedPanel {
else if (s0.getSourceCard().isWhite()) {
return new Color[] {Color.white, Color.black};
}
else if (s0.getSourceCard().isArtifact()) {
else if (s0.getSourceCard().isArtifact() || s0.getSourceCard().isLand()) {
return new Color[] {new Color(111, 75, 43), Color.white};
}