mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
Fix logic for Henzie (#6402)
This commit is contained in:
@@ -97,7 +97,10 @@ public class ManaCostBeingPaid {
|
||||
@Override
|
||||
public int getTotalGenericCost() {
|
||||
ShardCount c = unpaidShards.get(ManaCostShard.GENERIC);
|
||||
return c == null ? 0 : c.totalCount;
|
||||
if (c == null) {
|
||||
return unpaidShards.isEmpty() ? -1 : 0;
|
||||
}
|
||||
return c.totalCount;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user