diff --git a/src/main/java/forge/card/mana/ManaPool.java b/src/main/java/forge/card/mana/ManaPool.java index 9141e45c0c1..7d525880363 100644 --- a/src/main/java/forge/card/mana/ManaPool.java +++ b/src/main/java/forge/card/mana/ManaPool.java @@ -294,8 +294,8 @@ public class ManaPool { */ public final int totalMana() { int total = 0; - for (byte i : MagicColor.WUBRG) { - total += this.getAmountOfColor(i); + for (Collection cm : floatingMana.values()) { + total += cm.size(); } return total; }