Fix a typo in a previous commit.

This commit is contained in:
Myrd
2016-01-02 17:06:24 +00:00
parent 665bb60ef2
commit d7e088b5c0

View File

@@ -565,7 +565,7 @@ public class AbilityManaPart implements java.io.Serializable {
if (identity.hasBlue()) { sb.append("U "); } if (identity.hasBlue()) { sb.append("U "); }
if (identity.hasBlack()) { sb.append("B "); } if (identity.hasBlack()) { sb.append("B "); }
if (identity.hasRed()) { sb.append("R "); } if (identity.hasRed()) { sb.append("R "); }
if (identity.hasGreen()) { sb.append("R "); } if (identity.hasGreen()) { sb.append("G "); }
// TODO: Add support for {C}. // TODO: Add support for {C}.
return sb.length() == 0 ? "" : sb.substring(0, sb.length() - 1); return sb.length() == 0 ? "" : sb.substring(0, sb.length() - 1);
} }