From 82a59fbcc35dbb057739cff9f8d623c438cc69bb Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Sun, 3 Feb 2013 07:58:03 +0100 Subject: [PATCH] edit: Streamline wording of sector change reports slightly Most places use "FOO of X,Y changed", some use "FOO in X,Y changed", "FOO in X,Y was changed", "FOO of sector X,Y changed". Normalize to the former. Most places do not end the message with a period, some do. Normalize to no period. Signed-off-by: Markus Armbruster --- src/lib/commands/edit.c | 22 ++-- tests/actofgod/journal.log | 248 ++++++++++++++++++------------------- 2 files changed, 135 insertions(+), 135 deletions(-) diff --git a/src/lib/commands/edit.c b/src/lib/commands/edit.c index a53f44321..fcd2f39ba 100644 --- a/src/lib/commands/edit.c +++ b/src/lib/commands/edit.c @@ -235,7 +235,7 @@ noise(struct sctstr *sptr, char *name, int old, int new) name, xyas(sptr->sct_x, sptr->sct_y, player->cnum), old, new); if (sptr->sct_own && sptr->sct_own != player->cnum && new != old) wu(0, sptr->sct_own, - "%s in %s was changed from %d to %d by an act of %s\n", + "%s of %s changed from %d to %d by an act of %s\n", name, xyas(sptr->sct_x, sptr->sct_y, sptr->sct_own), old, new, cname(player->cnum)); benefit(sptr->sct_own, new - old); @@ -422,7 +422,7 @@ edit_sect_i(struct sctstr *sect, char *key, int arg) case 'o': if (arg < 0 || arg >= MAXNOC) return RET_SYN; - pr("Owner of %s changed from %s to %s.\n", + pr("Owner of %s changed from %s to %s\n", xyas(sect->sct_x, sect->sct_y, player->cnum), prnatid(sect->sct_own), prnatid(arg)); if (arg == sect->sct_own) @@ -438,7 +438,7 @@ edit_sect_i(struct sctstr *sect, char *key, int arg) case 'O': if (arg < 0 || arg >= MAXNOC) return RET_SYN; - pr("Old owner of %s changed from %s to %s.\n", + pr("Old owner of %s changed from %s to %s\n", xyas(sect->sct_x, sect->sct_y, player->cnum), prnatid(sect->sct_oldown), prnatid(arg)); if (arg == sect->sct_oldown) @@ -500,7 +500,7 @@ edit_sect_i(struct sctstr *sect, char *key, int arg) break; case 'x': new = LIMIT_TO(arg, 0, CHE_MAX); - pr("Guerillas in %s changed from %d to %d\n", + pr("Guerillas of %s changed from %d to %d\n", xyas(sect->sct_x, sect->sct_y, player->cnum), sect->sct_che, new); sect->sct_che = new; @@ -508,7 +508,7 @@ edit_sect_i(struct sctstr *sect, char *key, int arg) case 'X': if (arg < 0 || arg >= MAXNOC) return RET_SYN; - pr("Che target of %s changed from %s to %s.\n", + pr("Che target of %s changed from %s to %s\n", xyas(sect->sct_x, sect->sct_y, player->cnum), prnatid(sect->sct_che_target), prnatid(arg)); sect->sct_che_target = arg; @@ -597,7 +597,7 @@ edit_sect(struct sctstr *sect, char *key, char *p) case 'D': if (!sarg_xy(p, &newx, &newy)) return RET_SYN; - pr("Distribution sector of sector %s changed from %s to %s\n", + pr("Distribution sector of %s changed from %s to %s\n", xyas(sect->sct_x, sect->sct_y, player->cnum), xyas(sect->sct_dist_x, sect->sct_dist_y, player->cnum), xyas(newx, newy, player->cnum)); @@ -605,7 +605,7 @@ edit_sect(struct sctstr *sect, char *key, char *p) break; if (sect->sct_own && sect->sct_own != player->cnum) wu(0, sect->sct_own, - "Distribution sector of sector %s changed from %s to %s" + "Distribution sector of %s changed from %s to %s" " by an act of %s\n", xyas(sect->sct_x, sect->sct_y, player->cnum), xyas(sect->sct_dist_x, sect->sct_dist_y, player->cnum), @@ -618,14 +618,14 @@ edit_sect(struct sctstr *sect, char *key, char *p) new = sct_typematch(p); if (new < 0) return RET_SYN; - pr("Designation of sector %s changed from %c to %c\n", + pr("Designation of %s changed from %c to %c\n", xyas(sect->sct_x, sect->sct_y, player->cnum), dchr[sect->sct_type].d_mnem, dchr[new].d_mnem); if (new == sect->sct_type) break; if (sect->sct_own && sect->sct_own != player->cnum) wu(0, sect->sct_own, - "Designation of sector %s changed from %c to %c" + "Designation of %s changed from %c to %c" " by an act of %s\n", xyas(sect->sct_x, sect->sct_y, player->cnum), dchr[sect->sct_type].d_mnem, dchr[new].d_mnem, @@ -637,14 +637,14 @@ edit_sect(struct sctstr *sect, char *key, char *p) new = sct_typematch(p); if (new < 0) return RET_SYN; - pr("New designation of sector %s changed from %c to %c\n", + pr("New designation of %s changed from %c to %c\n", xyas(sect->sct_x, sect->sct_y, player->cnum), dchr[sect->sct_newtype].d_mnem, dchr[new].d_mnem); if (new == sect->sct_newtype) break; if (sect->sct_own && sect->sct_own != player->cnum) wu(0, sect->sct_own, - "New designation of sector %s changed from %c to %c" + "New designation of %s changed from %c to %c" " by an act of %s\n", xyas(sect->sct_x, sect->sct_y, player->cnum), dchr[sect->sct_newtype].d_mnem, dchr[new].d_mnem, diff --git a/tests/actofgod/journal.log b/tests/actofgod/journal.log index df9dc3d30..ac9f3e9cb 100644 --- a/tests/actofgod/journal.log +++ b/tests/actofgod/journal.log @@ -39,7 +39,7 @@ Play#0 output Play#0 6 0 640 Play#0 input edit l 1,7 o 0 Play#0 command edit - Play#0 output Play#0 1 Owner of 1,7 changed from 1 (#1) to POGO (#0). + Play#0 output Play#0 1 Owner of 1,7 changed from 1 (#1) to POGO (#0) Play#0 output Play#0 6 0 640 Play#0 input edit l 1,7 o -1 Play#0 command edit @@ -47,7 +47,7 @@ Play#0 output Play#0 6 0 640 Play#0 input edit l 3,7 o 98 Play#0 command edit - Play#0 output Play#0 1 Owner of 3,7 changed from 1 (#1) to 98 (#98). + Play#0 output Play#0 1 Owner of 3,7 changed from 1 (#1) to 98 (#98) Play#0 output Play#0 6 0 640 Play#0 input edit l 3,7 o 99 Play#0 command edit @@ -55,7 +55,7 @@ Play#0 output Play#0 6 0 640 Play#0 input edit l 1,7 O 0 Play#0 command edit - Play#0 output Play#0 1 Old owner of 1,7 changed from 1 (#1) to POGO (#0). + Play#0 output Play#0 1 Old owner of 1,7 changed from 1 (#1) to POGO (#0) Play#0 output Play#0 6 0 640 Play#0 input edit l 1,7 O -1 Play#0 command edit @@ -63,7 +63,7 @@ Play#0 output Play#0 6 0 640 Play#0 input edit l 3,7 O 98 Play#0 command edit - Play#0 output Play#0 1 Old owner of 3,7 changed from 1 (#1) to 98 (#98). + Play#0 output Play#0 1 Old owner of 3,7 changed from 1 (#1) to 98 (#98) Play#0 output Play#0 6 0 640 Play#0 input edit l 3,7 O 99 Play#0 command edit @@ -71,7 +71,7 @@ Play#0 output Play#0 6 0 640 Play#0 input edit l 1,7 X 0 Play#0 command edit - Play#0 output Play#0 1 Che target of 1,7 changed from POGO (#0) to POGO (#0). + Play#0 output Play#0 1 Che target of 1,7 changed from POGO (#0) to POGO (#0) Play#0 output Play#0 6 0 640 Play#0 input edit l 1,7 X -1 Play#0 command edit @@ -79,7 +79,7 @@ Play#0 output Play#0 6 0 640 Play#0 input edit l 3,7 X 98 Play#0 command edit - Play#0 output Play#0 1 Che target of 3,7 changed from POGO (#0) to 98 (#98). + Play#0 output Play#0 1 Che target of 3,7 changed from POGO (#0) to 98 (#98) Play#0 output Play#0 6 0 640 Play#0 input edit l 3,7 X 99 Play#0 command edit @@ -87,11 +87,11 @@ Play#0 output Play#0 6 0 640 Play#0 input edit l 5,7 o 2 Play#0 command edit - Play#0 output Play#0 1 Owner of 5,7 changed from 1 (#1) to 2 (#2). + Play#0 output Play#0 1 Owner of 5,7 changed from 1 (#1) to 2 (#2) Play#0 output Play#0 6 0 640 Play#0 input setsect ow 7,7 0 Play#0 command setsector - Play#0 output Play#0 1 Owner of 7,7 changed from 1 (#1) to POGO (#0). + Play#0 output Play#0 1 Owner of 7,7 changed from 1 (#1) to POGO (#0) Play#0 output Play#0 6 0 640 Play#0 input setsect ow 7,7 -1 Play#0 command setsector @@ -99,7 +99,7 @@ Play#0 output Play#0 6 0 640 Play#0 input setsect ow 9,7 98 Play#0 command setsector - Play#0 output Play#0 1 Owner of 9,7 changed from 1 (#1) to 98 (#98). + Play#0 output Play#0 1 Owner of 9,7 changed from 1 (#1) to 98 (#98) Play#0 output Play#0 6 0 640 Play#0 input setsect ow 9,7 99 Play#0 command setsector @@ -107,7 +107,7 @@ Play#0 output Play#0 6 0 640 Play#0 input setsect ol 7,7 0 Play#0 command setsector - Play#0 output Play#0 1 Old owner of 7,7 changed from 1 (#1) to POGO (#0). + Play#0 output Play#0 1 Old owner of 7,7 changed from 1 (#1) to POGO (#0) Play#0 output Play#0 6 0 640 Play#0 input setsect ol 7,7 -1 Play#0 command setsector @@ -115,7 +115,7 @@ Play#0 output Play#0 6 0 640 Play#0 input setsect ol 9,7 98 Play#0 command setsector - Play#0 output Play#0 1 Old owner of 9,7 changed from 1 (#1) to 98 (#98). + Play#0 output Play#0 1 Old owner of 9,7 changed from 1 (#1) to 98 (#98) Play#0 output Play#0 6 0 640 Play#0 input setsect ol 9,7 99 Play#0 command setsector @@ -123,7 +123,7 @@ Play#0 output Play#0 6 0 640 Play#0 input setsect ow 11,7 2 Play#0 command setsector - Play#0 output Play#0 1 Owner of 11,7 changed from 1 (#1) to 2 (#2). + Play#0 output Play#0 1 Owner of 11,7 changed from 1 (#1) to 2 (#2) Play#0 output Play#0 6 0 640 Play#0 input edit l 1,7 L 1,-7 Play#0 command edit @@ -504,19 +504,19 @@ Play#0 output Play#0 6 0 640 Play#0 input edit l 1,1 x 0 Play#0 command edit - Play#0 output Play#0 1 Guerillas in 1,1 changed from 0 to 0 + Play#0 output Play#0 1 Guerillas of 1,1 changed from 0 to 0 Play#0 output Play#0 6 0 640 Play#0 input edit l 3,1 x -1 Play#0 command edit - Play#0 output Play#0 1 Guerillas in 3,1 changed from 0 to 0 + Play#0 output Play#0 1 Guerillas of 3,1 changed from 0 to 0 Play#0 output Play#0 6 0 640 Play#0 input edit l 5,1 x 255 Play#0 command edit - Play#0 output Play#0 1 Guerillas in 5,1 changed from 0 to 255 + Play#0 output Play#0 1 Guerillas of 5,1 changed from 0 to 255 Play#0 output Play#0 6 0 640 Play#0 input edit l 7,1 x 256 Play#0 command edit - Play#0 output Play#0 1 Guerillas in 7,1 changed from 0 to 255 + Play#0 output Play#0 1 Guerillas of 7,1 changed from 0 to 255 Play#0 output Play#0 6 0 640 Play#0 input edit l 1,1 p 0 Play#0 command edit @@ -696,8 +696,8 @@ Play#0 output Play#0 6 0 640 Play#0 input setsect ol 1:3,-3 1 Play#0 command setsector - Play#0 output Play#0 1 Old owner of 1,-3 changed from 3 (#3) to 1 (#1). - Play#0 output Play#0 1 Old owner of 3,-3 changed from 3 (#3) to 1 (#1). + Play#0 output Play#0 1 Old owner of 1,-3 changed from 3 (#3) to 1 (#1) + Play#0 output Play#0 1 Old owner of 3,-3 changed from 3 (#3) to 1 (#1) Play#0 output Play#0 6 0 640 Play#0 input setsect mi 1,-3 1 Play#0 command setsector @@ -709,23 +709,23 @@ Play#0 output Play#0 6 0 640 Play#0 input edit l 2,4 D 4,4 Play#0 command edit - Play#0 output Play#0 1 Distribution sector of sector 2,4 changed from 2,4 to 4,4 + Play#0 output Play#0 1 Distribution sector of 2,4 changed from 2,4 to 4,4 Play#0 output Play#0 6 0 640 Play#0 input edit l 4,4 D 4,4 Play#0 command edit - Play#0 output Play#0 1 Distribution sector of sector 4,4 changed from 4,4 to 4,4 + Play#0 output Play#0 1 Distribution sector of 4,4 changed from 4,4 to 4,4 Play#0 output Play#0 6 0 640 Play#0 input edit l 6,4 s + Play#0 command edit - Play#0 output Play#0 1 Designation of sector 6,4 changed from - to + + Play#0 output Play#0 1 Designation of 6,4 changed from - to + Play#0 output Play#0 6 0 640 Play#0 input edit l 6,4 s + Play#0 command edit - Play#0 output Play#0 1 Designation of sector 6,4 changed from + to + + Play#0 output Play#0 1 Designation of 6,4 changed from + to + Play#0 output Play#0 6 0 640 Play#0 input edit l 8,4 s + Play#0 command edit - Play#0 output Play#0 1 Designation of sector 8,4 changed from - to + + Play#0 output Play#0 1 Designation of 8,4 changed from - to + Play#0 output Play#0 6 0 640 Play#0 input edit l 8,4 s , Play#0 command edit @@ -733,15 +733,15 @@ Play#0 output Play#0 6 0 640 Play#0 input edit l 6,4 S + Play#0 command edit - Play#0 output Play#0 1 New designation of sector 6,4 changed from - to + + Play#0 output Play#0 1 New designation of 6,4 changed from - to + Play#0 output Play#0 6 0 640 Play#0 input edit l 6,4 S + Play#0 command edit - Play#0 output Play#0 1 New designation of sector 6,4 changed from + to + + Play#0 output Play#0 1 New designation of 6,4 changed from + to + Play#0 output Play#0 6 0 640 Play#0 input edit l 8,4 S + Play#0 command edit - Play#0 output Play#0 1 New designation of sector 8,4 changed from - to + + Play#0 output Play#0 1 New designation of 8,4 changed from - to + Play#0 output Play#0 6 0 640 Play#0 input edit l 8,4 S , Play#0 command edit @@ -1506,104 +1506,104 @@ Play#0 output Play#0 1 Sector 7,7 taken from you by an act of POGO! Play#0 output Play#0 1 Sector 9,7 taken from you by an act of POGO! Play#0 output Play#0 1 Sector 11,7 taken from you by an act of POGO! - Play#0 output Play#0 1 Efficiency in 5,1 was changed from 0 to 100 by an act of POGO - Play#0 output Play#0 1 Efficiency in 7,1 was changed from 0 to 100 by an act of POGO - Play#0 output Play#0 1 Efficiency in 3,3 was changed from 0 to 1 by an act of POGO - Play#0 output Play#0 1 Efficiency in 5,3 was changed from 0 to 1 by an act of POGO - Play#0 output Play#0 1 Efficiency in 7,3 was changed from 0 to 1 by an act of POGO - Play#0 output Play#0 1 Efficiency in 5,3 was changed from 1 to 0 by an act of POGO - Play#0 output Play#0 1 Efficiency in 7,3 was changed from 1 to 0 by an act of POGO - Play#0 output Play#0 1 Mobility in 1,1 was changed from 0 to -127 by an act of POGO - Play#0 output Play#0 1 Mobility in 3,1 was changed from 0 to -127 by an act of POGO - Play#0 output Play#0 1 Mobility in 5,1 was changed from 0 to 127 by an act of POGO - Play#0 output Play#0 1 Mobility in 7,1 was changed from 0 to 127 by an act of POGO - Play#0 output Play#0 1 Mobility in 1,3 was changed from 0 to -127 by an act of POGO - Play#0 output Play#0 1 Mobility in 3,3 was changed from 0 to 1 by an act of POGO - Play#0 output Play#0 1 Mobility in 5,3 was changed from 0 to 1 by an act of POGO - Play#0 output Play#0 1 Mobility in 7,3 was changed from 0 to 1 by an act of POGO - Play#0 output Play#0 1 Mobility in 5,3 was changed from 1 to -127 by an act of POGO - Play#0 output Play#0 1 Mobility in 7,3 was changed from 1 to 0 by an act of POGO - Play#0 output Play#0 1 Iron ore content in 5,1 was changed from 0 to 100 by an act of POGO - Play#0 output Play#0 1 Iron ore content in 7,1 was changed from 0 to 100 by an act of POGO - Play#0 output Play#0 1 Iron ore content in 6,2 was changed from 0 to 100 by an act of POGO - Play#0 output Play#0 1 Iron ore content in 8,2 was changed from 0 to 100 by an act of POGO - Play#0 output Play#0 1 Iron ore content in 3,3 was changed from 0 to 1 by an act of POGO - Play#0 output Play#0 1 Iron ore content in 5,3 was changed from 0 to 1 by an act of POGO - Play#0 output Play#0 1 Iron ore content in 7,3 was changed from 0 to 1 by an act of POGO - Play#0 output Play#0 1 Iron ore content in 5,3 was changed from 1 to 0 by an act of POGO - Play#0 output Play#0 1 Iron ore content in 7,3 was changed from 1 to 0 by an act of POGO - Play#0 output Play#0 1 Gold content in 5,1 was changed from 0 to 100 by an act of POGO - Play#0 output Play#0 1 Gold content in 7,1 was changed from 0 to 100 by an act of POGO - Play#0 output Play#0 1 Gold content in 6,2 was changed from 0 to 100 by an act of POGO - Play#0 output Play#0 1 Gold content in 8,2 was changed from 0 to 100 by an act of POGO - Play#0 output Play#0 1 Gold content in 3,3 was changed from 0 to 1 by an act of POGO - Play#0 output Play#0 1 Gold content in 5,3 was changed from 0 to 1 by an act of POGO - Play#0 output Play#0 1 Gold content in 7,3 was changed from 0 to 1 by an act of POGO - Play#0 output Play#0 1 Gold content in 5,3 was changed from 1 to 0 by an act of POGO - Play#0 output Play#0 1 Gold content in 7,3 was changed from 1 to 0 by an act of POGO - Play#0 output Play#0 1 Fertility in 5,1 was changed from 0 to 100 by an act of POGO - Play#0 output Play#0 1 Fertility in 7,1 was changed from 0 to 100 by an act of POGO - Play#0 output Play#0 1 Fertility in 6,2 was changed from 0 to 100 by an act of POGO - Play#0 output Play#0 1 Fertility in 8,2 was changed from 0 to 100 by an act of POGO - Play#0 output Play#0 1 Fertility in 3,3 was changed from 0 to 1 by an act of POGO - Play#0 output Play#0 1 Fertility in 5,3 was changed from 0 to 1 by an act of POGO - Play#0 output Play#0 1 Fertility in 7,3 was changed from 0 to 1 by an act of POGO - Play#0 output Play#0 1 Fertility in 5,3 was changed from 1 to 0 by an act of POGO - Play#0 output Play#0 1 Fertility in 7,3 was changed from 1 to 0 by an act of POGO - Play#0 output Play#0 1 Oil content in 5,1 was changed from 0 to 100 by an act of POGO - Play#0 output Play#0 1 Oil content in 7,1 was changed from 0 to 100 by an act of POGO - Play#0 output Play#0 1 Oil content in 6,2 was changed from 0 to 100 by an act of POGO - Play#0 output Play#0 1 Oil content in 8,2 was changed from 0 to 100 by an act of POGO - Play#0 output Play#0 1 Oil content in 3,3 was changed from 0 to 1 by an act of POGO - Play#0 output Play#0 1 Oil content in 5,3 was changed from 0 to 1 by an act of POGO - Play#0 output Play#0 1 Oil content in 7,3 was changed from 0 to 1 by an act of POGO - Play#0 output Play#0 1 Oil content in 5,3 was changed from 1 to 0 by an act of POGO - Play#0 output Play#0 1 Oil content in 7,3 was changed from 1 to 0 by an act of POGO - Play#0 output Play#0 1 Uranium content in 5,1 was changed from 0 to 100 by an act of POGO - Play#0 output Play#0 1 Uranium content in 7,1 was changed from 0 to 100 by an act of POGO - Play#0 output Play#0 1 Uranium content in 6,2 was changed from 0 to 100 by an act of POGO - Play#0 output Play#0 1 Uranium content in 8,2 was changed from 0 to 100 by an act of POGO - Play#0 output Play#0 1 Uranium content in 3,3 was changed from 0 to 1 by an act of POGO - Play#0 output Play#0 1 Uranium content in 5,3 was changed from 0 to 1 by an act of POGO - Play#0 output Play#0 1 Uranium content in 7,3 was changed from 0 to 1 by an act of POGO - Play#0 output Play#0 1 Uranium content in 5,3 was changed from 1 to 0 by an act of POGO - Play#0 output Play#0 1 Uranium content in 7,3 was changed from 1 to 0 by an act of POGO - Play#0 output Play#0 1 Workforce percentage in 1,1 was changed from 100 to 0 by an act of POGO - Play#0 output Play#0 1 Workforce percentage in 3,1 was changed from 100 to 0 by an act of POGO - Play#0 output Play#0 1 Workforce percentage in 1,3 was changed from 100 to 0 by an act of POGO - Play#0 output Play#0 1 Workforce percentage in 5,3 was changed from 100 to 0 by an act of POGO - Play#0 output Play#0 1 Workforce percentage in 7,3 was changed from 100 to 99 by an act of POGO - Play#0 output Play#0 1 Fallout in 5,1 was changed from 0 to 9999 by an act of POGO - Play#0 output Play#0 1 Fallout in 7,1 was changed from 0 to 9999 by an act of POGO - Play#0 output Play#0 1 Available workforce in 5,1 was changed from 0 to 9999 by an act of POGO - Play#0 output Play#0 1 Available workforce in 7,1 was changed from 0 to 9999 by an act of POGO - Play#0 output Play#0 1 Available workforce in 3,3 was changed from 0 to 1 by an act of POGO - Play#0 output Play#0 1 Available workforce in 5,3 was changed from 0 to 1 by an act of POGO - Play#0 output Play#0 1 Available workforce in 7,3 was changed from 0 to 1 by an act of POGO - Play#0 output Play#0 1 Available workforce in 5,3 was changed from 1 to 0 by an act of POGO - Play#0 output Play#0 1 Available workforce in 7,3 was changed from 1 to 0 by an act of POGO - Play#0 output Play#0 1 Mines in 5,1 was changed from 0 to 32767 by an act of POGO - Play#0 output Play#0 1 Mines in 7,1 was changed from 0 to 32767 by an act of POGO - Play#0 output Play#0 1 Mines in 3,3 was changed from 0 to 1 by an act of POGO - Play#0 output Play#0 1 Mines in 5,3 was changed from 0 to 1 by an act of POGO - Play#0 output Play#0 1 Mines in 7,3 was changed from 0 to 1 by an act of POGO - Play#0 output Play#0 1 Mines in 5,3 was changed from 1 to 0 by an act of POGO - Play#0 output Play#0 1 Mines in 7,3 was changed from 1 to 0 by an act of POGO - Play#0 output Play#0 1 Road percentage in 5,1 was changed from 0 to 100 by an act of POGO - Play#0 output Play#0 1 Road percentage in 7,1 was changed from 0 to 100 by an act of POGO - Play#0 output Play#0 1 Rail percentage in 5,1 was changed from 0 to 100 by an act of POGO - Play#0 output Play#0 1 Rail percentage in 7,1 was changed from 0 to 100 by an act of POGO - Play#0 output Play#0 1 Defense percentage in 5,1 was changed from 0 to 100 by an act of POGO - Play#0 output Play#0 1 Defense percentage in 7,1 was changed from 0 to 100 by an act of POGO - Play#0 output Play#0 1 Distribution sector of sector 2,4 changed from 2,4 to 4,4 by an act of POGO - Play#0 output Play#0 1 Designation of sector 6,4 changed from - to + by an act of POGO - Play#0 output Play#0 1 Designation of sector 8,4 changed from - to + by an act of POGO - Play#0 output Play#0 1 New designation of sector 6,4 changed from - to + by an act of POGO - Play#0 output Play#0 1 New designation of sector 8,4 changed from - to + by an act of POGO - Play#0 output Play#0 1 Mobility in 1,5 was changed from 0 to 1 by an act of POGO - Play#0 output Play#0 1 Available workforce in 1,5 was changed from 0 to 1 by an act of POGO - Play#0 output Play#0 1 Mobility in 3,5 was changed from 0 to 2 by an act of POGO - Play#0 output Play#0 1 Available workforce in 3,5 was changed from 0 to 1 by an act of POGO + Play#0 output Play#0 1 Efficiency of 5,1 changed from 0 to 100 by an act of POGO + Play#0 output Play#0 1 Efficiency of 7,1 changed from 0 to 100 by an act of POGO + Play#0 output Play#0 1 Efficiency of 3,3 changed from 0 to 1 by an act of POGO + Play#0 output Play#0 1 Efficiency of 5,3 changed from 0 to 1 by an act of POGO + Play#0 output Play#0 1 Efficiency of 7,3 changed from 0 to 1 by an act of POGO + Play#0 output Play#0 1 Efficiency of 5,3 changed from 1 to 0 by an act of POGO + Play#0 output Play#0 1 Efficiency of 7,3 changed from 1 to 0 by an act of POGO + Play#0 output Play#0 1 Mobility of 1,1 changed from 0 to -127 by an act of POGO + Play#0 output Play#0 1 Mobility of 3,1 changed from 0 to -127 by an act of POGO + Play#0 output Play#0 1 Mobility of 5,1 changed from 0 to 127 by an act of POGO + Play#0 output Play#0 1 Mobility of 7,1 changed from 0 to 127 by an act of POGO + Play#0 output Play#0 1 Mobility of 1,3 changed from 0 to -127 by an act of POGO + Play#0 output Play#0 1 Mobility of 3,3 changed from 0 to 1 by an act of POGO + Play#0 output Play#0 1 Mobility of 5,3 changed from 0 to 1 by an act of POGO + Play#0 output Play#0 1 Mobility of 7,3 changed from 0 to 1 by an act of POGO + Play#0 output Play#0 1 Mobility of 5,3 changed from 1 to -127 by an act of POGO + Play#0 output Play#0 1 Mobility of 7,3 changed from 1 to 0 by an act of POGO + Play#0 output Play#0 1 Iron ore content of 5,1 changed from 0 to 100 by an act of POGO + Play#0 output Play#0 1 Iron ore content of 7,1 changed from 0 to 100 by an act of POGO + Play#0 output Play#0 1 Iron ore content of 6,2 changed from 0 to 100 by an act of POGO + Play#0 output Play#0 1 Iron ore content of 8,2 changed from 0 to 100 by an act of POGO + Play#0 output Play#0 1 Iron ore content of 3,3 changed from 0 to 1 by an act of POGO + Play#0 output Play#0 1 Iron ore content of 5,3 changed from 0 to 1 by an act of POGO + Play#0 output Play#0 1 Iron ore content of 7,3 changed from 0 to 1 by an act of POGO + Play#0 output Play#0 1 Iron ore content of 5,3 changed from 1 to 0 by an act of POGO + Play#0 output Play#0 1 Iron ore content of 7,3 changed from 1 to 0 by an act of POGO + Play#0 output Play#0 1 Gold content of 5,1 changed from 0 to 100 by an act of POGO + Play#0 output Play#0 1 Gold content of 7,1 changed from 0 to 100 by an act of POGO + Play#0 output Play#0 1 Gold content of 6,2 changed from 0 to 100 by an act of POGO + Play#0 output Play#0 1 Gold content of 8,2 changed from 0 to 100 by an act of POGO + Play#0 output Play#0 1 Gold content of 3,3 changed from 0 to 1 by an act of POGO + Play#0 output Play#0 1 Gold content of 5,3 changed from 0 to 1 by an act of POGO + Play#0 output Play#0 1 Gold content of 7,3 changed from 0 to 1 by an act of POGO + Play#0 output Play#0 1 Gold content of 5,3 changed from 1 to 0 by an act of POGO + Play#0 output Play#0 1 Gold content of 7,3 changed from 1 to 0 by an act of POGO + Play#0 output Play#0 1 Fertility of 5,1 changed from 0 to 100 by an act of POGO + Play#0 output Play#0 1 Fertility of 7,1 changed from 0 to 100 by an act of POGO + Play#0 output Play#0 1 Fertility of 6,2 changed from 0 to 100 by an act of POGO + Play#0 output Play#0 1 Fertility of 8,2 changed from 0 to 100 by an act of POGO + Play#0 output Play#0 1 Fertility of 3,3 changed from 0 to 1 by an act of POGO + Play#0 output Play#0 1 Fertility of 5,3 changed from 0 to 1 by an act of POGO + Play#0 output Play#0 1 Fertility of 7,3 changed from 0 to 1 by an act of POGO + Play#0 output Play#0 1 Fertility of 5,3 changed from 1 to 0 by an act of POGO + Play#0 output Play#0 1 Fertility of 7,3 changed from 1 to 0 by an act of POGO + Play#0 output Play#0 1 Oil content of 5,1 changed from 0 to 100 by an act of POGO + Play#0 output Play#0 1 Oil content of 7,1 changed from 0 to 100 by an act of POGO + Play#0 output Play#0 1 Oil content of 6,2 changed from 0 to 100 by an act of POGO + Play#0 output Play#0 1 Oil content of 8,2 changed from 0 to 100 by an act of POGO + Play#0 output Play#0 1 Oil content of 3,3 changed from 0 to 1 by an act of POGO + Play#0 output Play#0 1 Oil content of 5,3 changed from 0 to 1 by an act of POGO + Play#0 output Play#0 1 Oil content of 7,3 changed from 0 to 1 by an act of POGO + Play#0 output Play#0 1 Oil content of 5,3 changed from 1 to 0 by an act of POGO + Play#0 output Play#0 1 Oil content of 7,3 changed from 1 to 0 by an act of POGO + Play#0 output Play#0 1 Uranium content of 5,1 changed from 0 to 100 by an act of POGO + Play#0 output Play#0 1 Uranium content of 7,1 changed from 0 to 100 by an act of POGO + Play#0 output Play#0 1 Uranium content of 6,2 changed from 0 to 100 by an act of POGO + Play#0 output Play#0 1 Uranium content of 8,2 changed from 0 to 100 by an act of POGO + Play#0 output Play#0 1 Uranium content of 3,3 changed from 0 to 1 by an act of POGO + Play#0 output Play#0 1 Uranium content of 5,3 changed from 0 to 1 by an act of POGO + Play#0 output Play#0 1 Uranium content of 7,3 changed from 0 to 1 by an act of POGO + Play#0 output Play#0 1 Uranium content of 5,3 changed from 1 to 0 by an act of POGO + Play#0 output Play#0 1 Uranium content of 7,3 changed from 1 to 0 by an act of POGO + Play#0 output Play#0 1 Workforce percentage of 1,1 changed from 100 to 0 by an act of POGO + Play#0 output Play#0 1 Workforce percentage of 3,1 changed from 100 to 0 by an act of POGO + Play#0 output Play#0 1 Workforce percentage of 1,3 changed from 100 to 0 by an act of POGO + Play#0 output Play#0 1 Workforce percentage of 5,3 changed from 100 to 0 by an act of POGO + Play#0 output Play#0 1 Workforce percentage of 7,3 changed from 100 to 99 by an act of POGO + Play#0 output Play#0 1 Fallout of 5,1 changed from 0 to 9999 by an act of POGO + Play#0 output Play#0 1 Fallout of 7,1 changed from 0 to 9999 by an act of POGO + Play#0 output Play#0 1 Available workforce of 5,1 changed from 0 to 9999 by an act of POGO + Play#0 output Play#0 1 Available workforce of 7,1 changed from 0 to 9999 by an act of POGO + Play#0 output Play#0 1 Available workforce of 3,3 changed from 0 to 1 by an act of POGO + Play#0 output Play#0 1 Available workforce of 5,3 changed from 0 to 1 by an act of POGO + Play#0 output Play#0 1 Available workforce of 7,3 changed from 0 to 1 by an act of POGO + Play#0 output Play#0 1 Available workforce of 5,3 changed from 1 to 0 by an act of POGO + Play#0 output Play#0 1 Available workforce of 7,3 changed from 1 to 0 by an act of POGO + Play#0 output Play#0 1 Mines of 5,1 changed from 0 to 32767 by an act of POGO + Play#0 output Play#0 1 Mines of 7,1 changed from 0 to 32767 by an act of POGO + Play#0 output Play#0 1 Mines of 3,3 changed from 0 to 1 by an act of POGO + Play#0 output Play#0 1 Mines of 5,3 changed from 0 to 1 by an act of POGO + Play#0 output Play#0 1 Mines of 7,3 changed from 0 to 1 by an act of POGO + Play#0 output Play#0 1 Mines of 5,3 changed from 1 to 0 by an act of POGO + Play#0 output Play#0 1 Mines of 7,3 changed from 1 to 0 by an act of POGO + Play#0 output Play#0 1 Road percentage of 5,1 changed from 0 to 100 by an act of POGO + Play#0 output Play#0 1 Road percentage of 7,1 changed from 0 to 100 by an act of POGO + Play#0 output Play#0 1 Rail percentage of 5,1 changed from 0 to 100 by an act of POGO + Play#0 output Play#0 1 Rail percentage of 7,1 changed from 0 to 100 by an act of POGO + Play#0 output Play#0 1 Defense percentage of 5,1 changed from 0 to 100 by an act of POGO + Play#0 output Play#0 1 Defense percentage of 7,1 changed from 0 to 100 by an act of POGO + Play#0 output Play#0 1 Distribution sector of 2,4 changed from 2,4 to 4,4 by an act of POGO + Play#0 output Play#0 1 Designation of 6,4 changed from - to + by an act of POGO + Play#0 output Play#0 1 Designation of 8,4 changed from - to + by an act of POGO + Play#0 output Play#0 1 New designation of 6,4 changed from - to + by an act of POGO + Play#0 output Play#0 1 New designation of 8,4 changed from - to + by an act of POGO + Play#0 output Play#0 1 Mobility of 1,5 changed from 0 to 1 by an act of POGO + Play#0 output Play#0 1 Available workforce of 1,5 changed from 0 to 1 by an act of POGO + Play#0 output Play#0 1 Mobility of 3,5 changed from 0 to 2 by an act of POGO + Play#0 output Play#0 1 Available workforce of 3,5 changed from 0 to 1 by an act of POGO Play#0 output Play#0 1 POGO gave you 1 civilians in 4,6 Play#0 output Play#0 1 POGO gave you 1 civilians in 6,6 Play#0 output Play#0 1 POGO gave you 1 civilians in 8,6 -- 2.43.0