]> git.pond.sub.org Git - empserver/blobdiff - src/lib/subs/pr.c
Ensure the update's production report isn't split by bulletins
[empserver] / src / lib / subs / pr.c
index bde5918cb08bf6fb0eb848728cc992cba21d95d4..86fd4bb55026c37bd63650e3375d254bf880f8fd 100644 (file)
@@ -346,7 +346,7 @@ prredir(char *redir)
 
 /*
  * Send script execute request FILE to the current player.
- * REDIR is UTF-8, but non-ASCII characters can occur only if the
+ * FILE is UTF-8, but non-ASCII characters can occur only if the
  * player sent them.  Therefore, it is also user text.
  */
 void
@@ -482,7 +482,7 @@ mpr(int cn, char *format, ...)
     (void)vsprintf(buf, format, ap);
     va_end(ap);
     if (update_running || cn != player->cnum)
-       typed_wu(0, cn, buf, TEL_BULLETIN);
+       wu(0, cn, "%s", buf);
     else
        pr_player(player, C_DATA, buf);
 }