mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48: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();
|
||||
boolean sameType = false;
|
||||
|
||||
if (type.contains("sharesCreatureTypeWith")) {
|
||||
if (type.contains(".sharesCreatureTypeWith")) {
|
||||
sameType = true;
|
||||
type = type.replace("sharesCreatureTypeWith", "");
|
||||
type = type.replace(".sharesCreatureTypeWith", "");
|
||||
}
|
||||
boolean totalPower = false;
|
||||
String totalP = "";
|
||||
|
||||
@@ -991,9 +991,9 @@ public class HumanCostDecision extends CostDecisionMakerBase {
|
||||
Integer c = cost.convertAmount();
|
||||
|
||||
boolean sameType = false;
|
||||
if (type.contains("sharesCreatureTypeWith")) {
|
||||
if (type.contains(".sharesCreatureTypeWith")) {
|
||||
sameType = true;
|
||||
type = type.replace("sharesCreatureTypeWith", "");
|
||||
type = type.replace(".sharesCreatureTypeWith", "");
|
||||
}
|
||||
|
||||
boolean totalPower = false;
|
||||
|
||||
Reference in New Issue
Block a user