mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
Avoid being unnecessarily prompted when tapping multi-color creature for convoke
This commit is contained in:
@@ -580,4 +580,12 @@ public class ManaCostBeingPaid {
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
public final byte getUnpaidColors() {
|
||||
byte result = 0;
|
||||
for (ManaCostShard s : unpaidShards.keySet()) {
|
||||
result |= s.getColorMask();
|
||||
}
|
||||
return result;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user