(resnoise): Remove the % from the change message for setsect().

Percent does not make sense for most of the values that can be
changed.
This commit is contained in:
Ron Koenderink 2007-11-24 00:25:11 +00:00
parent 57f589e2e4
commit 270ac2255a

View file

@ -356,7 +356,7 @@ resnoise(struct sctstr *sptr, int public_amt, char *name, int old,
{ {
char p[100]; char p[100];
pr("%s of %s changed from %d to %d%%\n", pr("%s of %s changed from %d to %d\n",
name, xyas(sptr->sct_x, sptr->sct_y, player->cnum), old, new); name, xyas(sptr->sct_x, sptr->sct_y, player->cnum), old, new);
if (public_amt) if (public_amt)
(void)sprintf(p, "changed from %d to %d", old, new); (void)sprintf(p, "changed from %d to %d", old, new);