System.err.print(" on ");
System.err.print(entity.getDisplayName());
System.err.println(" was already triggered this round!!");
}
} else if (ea instanceof TriggerBPodAction) {
TriggerBPodAction tba = (TriggerBPodAction) ea;
// Don't trigger the same pod twice.
if (!triggerPodActions.contains(tba)) {
triggerBPod(entity, tba.getPodId(), game.getEntity(tba.getTargetId()));
triggerPodActions.addElement(tba);
} else {
System.err.print("B Pod #");
System.err.print(tba.getPodId());
System.err.print(" on ");
System.err.print(entity.getDisplayName());
System.err.println(" was already triggered this round!!");
}
} else if (ea instanceof SearchlightAttackAction) {