Force player choice for mandatory costs

This commit is contained in:
tool4EvEr
2021-03-02 19:33:40 +01:00
parent 03a63da029
commit 65fc79a746
6 changed files with 16 additions and 7 deletions

View File

@@ -515,6 +515,7 @@ public class Cost implements Serializable {
public final Cost copy() {
Cost toRet = new Cost();
toRet.isAbility = this.isAbility;
toRet.isMandatory = this.isMandatory;
for (CostPart cp : this.costParts) {
toRet.costParts.add(cp.copy());
}