This commit is contained in:
Enno Rehling 2014-09-04 17:22:33 +02:00
commit b761cb5b97
2 changed files with 6 additions and 2 deletions

View File

@ -88,7 +88,9 @@ zip="$turn-$1.zip"
zip -q -u $zip $turn-$1.?r
email=$(grep "faction=$1:" reports.txt | cut -d: -f2 | sed 's/email=//')
echo "sending reports to $1 / $email"
cat /dev/null | mutt -F $ERESSEA/etc/muttrc -s "Testauswertung Spiel $game Partei $1" -a $zip -- $email
info=/dev/null
[ -e ../email.txt ] && info=../email.txt
cat $info | mutt -F $ERESSEA/etc/muttrc -s "Testauswertung Spiel $game Partei $1" -a $zip -- $email
}
game=0

View File

@ -1571,7 +1571,9 @@ int readgame(const char *filename, int backup)
}
}
a_read(&store, &pl->attribs, pl);
addlist(&planes, pl);
if (pl->id != 1094969858) { // Regatta
addlist(&planes, pl);
}
}
/* Read factions */