From: Markus Armbruster Date: Mon, 21 Nov 2011 06:26:02 +0000 (+0100) Subject: Fix wire not to clear pending telegrams with toggle inform on X-Git-Tag: v4.3.29~13 X-Git-Url: http://git.pond.sub.org/?p=empserver;a=commitdiff_plain;h=a0e91cbc5ea2c85118792fb682ed6b7fd731a147 Fix wire not to clear pending telegrams with toggle inform on Broken since Empire 2 introduced toggle inform. --- diff --git a/src/lib/commands/rea.c b/src/lib/commands/rea.c index f30109b7f..962abd8f7 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; }