Send bulletins only from POGO

In the beginning, all bulletins came from POGO.  Chainsaw changed edit
and give to send them from the deity using the command.  Its new
command setresource sent from POGO regardless.  Its new command
setsector did both.

Go back to sending them only from POGO.

Some of the affected bulletins don't mention the acting deity.  Reword
them so they do.

Signed-off-by: Markus Armbruster <armbru@pond.sub.org>
This commit is contained in:
Markus Armbruster 2013-01-21 20:58:28 +01:00
parent fb45b04420
commit 3072386d8d
4 changed files with 66 additions and 64 deletions

View file

@ -78,13 +78,13 @@ give(void)
if (m > n) {
if (opt_GODNEWS)
nreport(player->cnum, N_GIFT, sect.sct_own, 1);
wu(player->cnum, sect.sct_own, "%s gave you %d %s in %s\n",
wu(0, sect.sct_own, "%s gave you %d %s in %s\n",
cname(player->cnum), m - n, ip->i_name,
xyas(sect.sct_x, sect.sct_y, sect.sct_own));
} else {
if (opt_GODNEWS)
nreport(sect.sct_own, N_TAKE, player->cnum, 1);
wu(player->cnum, sect.sct_own, "%s stole %d %s from %s\n",
wu(0, sect.sct_own, "%s stole %d %s from %s\n",
cname(player->cnum), n - m, ip->i_name,
xyas(sect.sct_x, sect.sct_y, sect.sct_own));
}