Merge branch 'mana' into 'master'

Fix generating Chosen mana when no choice was made

See merge request core-developers/forge!6040
This commit is contained in:
Michael Kamensky
2022-01-13 04:27:48 +00:00

View File

@@ -421,6 +421,7 @@ public class AbilityManaPart implements java.io.Serializable {
if (this.getSourceCard() != null && this.getSourceCard().hasChosenColor()) {
return MagicColor.toShortString(this.getSourceCard().getChosenColor());
}
return "";
}
return this.getOrigProduced();
}