mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 18:58:00 +00:00
- Fixed Biomantic Mastery
This commit is contained in:
@@ -486,6 +486,13 @@ public class AbilityUtils {
|
||||
}
|
||||
return CardFactoryUtil.playerXCount(players, calcX[1], card) * multiplier;
|
||||
}
|
||||
if (calcX[0].startsWith("ThisTargetedPlayer")) {
|
||||
final ArrayList<Player> players = new ArrayList<Player>();
|
||||
if (null != ability) {
|
||||
Iterables.addAll(players, ability.getTargets().getTargetPlayers());
|
||||
}
|
||||
return CardFactoryUtil.playerXCount(players, calcX[1], card) * multiplier;
|
||||
}
|
||||
if (calcX[0].startsWith("TargetedObjects")) {
|
||||
final List<GameObject> objects = new ArrayList<GameObject>();
|
||||
// Make list of all targeted objects starting with the root SpellAbility
|
||||
|
||||
Reference in New Issue
Block a user