swapsector: Notify affected sector owners
Send bulletins, like edit does. Signed-off-by: Markus Armbruster <armbru@pond.sub.org>
This commit is contained in:
parent
e109d981b8
commit
eb60b38a26
2 changed files with 14 additions and 1 deletions
|
@ -28,7 +28,7 @@
|
|||
*
|
||||
* Known contributors to this file:
|
||||
* Ken Stevens, 1995
|
||||
* Markus Armbruster, 2006-2010
|
||||
* Markus Armbruster, 2006-2013
|
||||
*/
|
||||
|
||||
#include <config.h>
|
||||
|
@ -46,6 +46,8 @@ swaps(void)
|
|||
struct sctstr secta, sectb, tmp;
|
||||
char buf[1024];
|
||||
char *p;
|
||||
int i;
|
||||
natid to;
|
||||
|
||||
if (!(p = getstarg(player->argp[1], "First sector : ", buf)) ||
|
||||
!sarg_xy(p, §a.sct_x, §a.sct_y) ||
|
||||
|
@ -61,6 +63,15 @@ swaps(void)
|
|||
return RET_FAIL;
|
||||
if (!check_sect_ok(§a) || !check_sect_ok(§b))
|
||||
return RET_FAIL;
|
||||
for (i = 0; i <= (secta.sct_own != sectb.sct_own); i++) {
|
||||
to = i == 0 ? secta.sct_own : sectb.sct_own;
|
||||
if (to && to != player->cnum)
|
||||
wu(0, to,
|
||||
"Sector %s swapped with %s by an act of %s!\n",
|
||||
xyas(secta.sct_x, secta.sct_y, to),
|
||||
xyas(sectb.sct_x, sectb.sct_y, to),
|
||||
cname(player->cnum));
|
||||
}
|
||||
tmp = secta;
|
||||
/* change the location of secta to that of sectb */
|
||||
secta.sct_x = sectb.sct_x;
|
||||
|
|
|
@ -1617,6 +1617,7 @@
|
|||
Play#0 output Play#0 1 > BULLETIN from POGO, (#0) dated Thu Jan 1 00:00:00 1970
|
||||
Play#0 output Play#0 1 Sector 5,7 given to you by an act of POGO!
|
||||
Play#0 output Play#0 1 Sector 11,7 given to you by an act of POGO!
|
||||
Play#0 output Play#0 1 Sector -2,2 swapped with 2,-2 by an act of POGO!
|
||||
Play#0 output Play#0 1 cs cargo ship (#2) given to you by an act of POGO!
|
||||
Play#0 output Play#0 1 f1 Sopwith Camel #2 given to you by an act of POGO!
|
||||
Play#0 output Play#0 1 sup supply #2 given to you by an act of POGO!
|
||||
|
@ -1630,6 +1631,7 @@
|
|||
Play#0 output Play#0 1 Sector 3,-7 given to you by an act of POGO!
|
||||
Play#0 output Play#0 1 Old owner of 1,-3 changed from 3 (#3) to 1 (#1) by an act of POGO
|
||||
Play#0 output Play#0 1 Old owner of 3,-3 changed from 3 (#3) to 1 (#1) by an act of POGO
|
||||
Play#0 output Play#0 1 Sector -2,2 swapped with 2,-2 by an act of POGO!
|
||||
Play#0 output Play#0 1 cs cargo ship (#0) taken from you by an act of POGO!
|
||||
Play#0 output Play#0 1 cs cargo ship (#1) taken from you by an act of POGO!
|
||||
Play#0 output Play#0 1 cs cargo ship (#2) taken from you by an act of POGO!
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue