]> git.pond.sub.org Git - empserver/blobdiff - src/lib/commands/rea.c
Fix wire not to clear pending telegrams with toggle inform on
[empserver] / src / lib / commands / rea.c
index f30109b7f4dbec46811737c60265d1289c20c476..962abd8f7ea70e061040134be705372deabe2521 100644 (file)
@@ -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;
 }