mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 19:28:01 +00:00
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:
@@ -322,7 +322,7 @@ public class ViewTabber extends FRoundedPanel {
|
|||||||
else if (s0.getSourceCard().isWhite()) {
|
else if (s0.getSourceCard().isWhite()) {
|
||||||
return new Color[] {Color.white, Color.black};
|
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};
|
return new Color[] {new Color(111, 75, 43), Color.white};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user