- Tweaked the stack description of AF Pump (it now shows unique numbers).

This commit is contained in:
Sloth
2012-02-26 15:41:40 +00:00
parent 32305cf4e3
commit f3b91c44f3

View File

@@ -823,7 +823,6 @@ public class AbilityFactoryPump {
// when damageStackDescription is called, just build exactly what is
// happening
final StringBuilder sb = new StringBuilder();
final String name = af.getHostCard().getName();
ArrayList<GameEntity> tgts = new ArrayList<GameEntity>();
final Target tgt = sa.getTarget();
@@ -844,7 +843,7 @@ public class AbilityFactoryPump {
if (sa instanceof AbilitySub) {
sb.append(" ");
} else {
sb.append(name).append(" - ");
sb.append(af.getHostCard()).append(" - ");
}
if (params.containsKey("StackDescription")) {
@@ -852,7 +851,7 @@ public class AbilityFactoryPump {
}
else {
for (final GameEntity c : tgts) {
sb.append(c.getName()).append(" ");
sb.append(c).append(" ");
}
if (af.getMapParams().containsKey("Radiance")) {