From a0e91cbc5ea2c85118792fb682ed6b7fd731a147 Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Mon, 21 Nov 2011 07:26:02 +0100 Subject: [PATCH] Fix wire not to clear pending telegrams with toggle inform on Broken since Empire 2 introduced toggle inform. --- src/lib/commands/rea.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/lib/commands/rea.c b/src/lib/commands/rea.c index f30109b7..962abd8f 100644 --- a/src/lib/commands/rea.c +++ b/src/lib/commands/rea.c @@ -174,10 +174,12 @@ rea(void) pr("No %ss for %s at the moment...\n", kind, cname(num)); } (void)fclose(telfp); - if (np->nat_flags & NF_INFORM) { - pr_inform(player, "\n"); - np->nat_tgms = 0; - putnat(np); + if (*kind != 'a') { + if (np->nat_flags & NF_INFORM) { + pr_inform(player, "\n"); + np->nat_tgms = 0; + putnat(np); + } } return RET_OK; }