- Removed an unused parameter.

This commit is contained in:
Agetian
2017-08-23 19:37:00 +00:00
parent 30e878cbf9
commit 20d27bb9b3

View File

@@ -1423,7 +1423,7 @@ public class ComputerUtilCard {
// Electrostatic Pummeler
for (SpellAbility ab : c.getSpellAbilities()) {
if ("Pummeler".equals(ab.getParam("AILogic"))) {
Pair<Integer, Integer> newPT = SpecialCardAi.ElectrostaticPummeler.getPumpedPT(ai, sa, power, toughness, kws);
Pair<Integer, Integer> newPT = SpecialCardAi.ElectrostaticPummeler.getPumpedPT(ai, sa, power, toughness);
power = newPT.getLeft();
toughness = newPT.getRight();
}