mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
- Fixed Weight of Conscience
This commit is contained in:
@@ -112,9 +112,9 @@ public class CostTapType extends CostPartWithList {
|
|||||||
String type = this.getType();
|
String type = this.getType();
|
||||||
boolean sameType = false;
|
boolean sameType = false;
|
||||||
|
|
||||||
if (type.contains("sharesCreatureTypeWith")) {
|
if (type.contains(".sharesCreatureTypeWith")) {
|
||||||
sameType = true;
|
sameType = true;
|
||||||
type = type.replace("sharesCreatureTypeWith", "");
|
type = type.replace(".sharesCreatureTypeWith", "");
|
||||||
}
|
}
|
||||||
boolean totalPower = false;
|
boolean totalPower = false;
|
||||||
String totalP = "";
|
String totalP = "";
|
||||||
|
|||||||
@@ -991,9 +991,9 @@ public class HumanCostDecision extends CostDecisionMakerBase {
|
|||||||
Integer c = cost.convertAmount();
|
Integer c = cost.convertAmount();
|
||||||
|
|
||||||
boolean sameType = false;
|
boolean sameType = false;
|
||||||
if (type.contains("sharesCreatureTypeWith")) {
|
if (type.contains(".sharesCreatureTypeWith")) {
|
||||||
sameType = true;
|
sameType = true;
|
||||||
type = type.replace("sharesCreatureTypeWith", "");
|
type = type.replace(".sharesCreatureTypeWith", "");
|
||||||
}
|
}
|
||||||
|
|
||||||
boolean totalPower = false;
|
boolean totalPower = false;
|
||||||
|
|||||||
Reference in New Issue
Block a user