X-Git-Url: http://git.pond.sub.org/?p=empserver;a=blobdiff_plain;f=src%2Flib%2Fcommands%2Fedit.c;h=1dd1e1eb34a78c75d4b87b0fb7e18808bf61d61f;hp=183979d3843f589647e0579690e39dc8ea70b44b;hb=aa07f3393a9280225cde7297934a2309a49983b9;hpb=53d0edc83893304420637e72854ba5b4b911757f diff --git a/src/lib/commands/edit.c b/src/lib/commands/edit.c index 183979d38..1dd1e1eb3 100644 --- a/src/lib/commands/edit.c +++ b/src/lib/commands/edit.c @@ -507,7 +507,7 @@ edit_sect(struct sctstr *sect, char op, int arg, char *p) break; case 'l': new = LIMIT_TO(arg, 0, 127); - pr("Loyalty of %s changed from %d to %d%%\n", + pr("Loyalty of %s changed from %d to %d\n", xyas(sect->sct_x, sect->sct_y, player->cnum), sect->sct_loyal, new); sect->sct_loyal = (unsigned char)new; @@ -532,14 +532,14 @@ edit_sect(struct sctstr *sect, char op, int arg, char *p) case 'p': old = sect->sct_pstage; new = LIMIT_TO(arg, 0, PLG_EXPOSED); - pr("Plague stage of %s changed from %d to %d%%\n", + pr("Plague stage of %s changed from %d to %d\n", xyas(sect->sct_x, sect->sct_y, player->cnum), old, new); sect->sct_pstage = new; break; case 't': old = sect->sct_ptime; new = LIMIT_TO(arg, 0, 255); - pr("Plague time of %s changed from %d to %d%%\n", + pr("Plague time of %s changed from %d to %d\n", xyas(sect->sct_x, sect->sct_y, player->cnum), old, new); sect->sct_ptime = new; break;