*/
protected void sendCommand ( ASConnection connection, ActionTarget target, String command ) {
// Iterate through the targets and send the command
for ( Iterator iter = target.iterator() ; iter.hasNext() ; ) {
try {
ActionTargetPlayer player = (ActionTargetPlayer)iter.next();
// Calls the command
connection.sendPrivateMessage( player.getPlayerName(), command );
}
catch ( ClassCastException cce ) {
// This shouldn't happen since the iterator
// returns object of type ActionTargetPlayer
}