(docountry): Telex country on nat_reserve editing unconditionally.

The condition was never true due to a coding mistake.  Other edits
don't have such conditions.
This commit is contained in:
Markus Armbruster 2006-01-04 21:25:23 +00:00
parent 8329b8884a
commit 78dd01ab8e

View file

@ -724,10 +724,9 @@ docountry(s_char op, int arg, s_char *p, float farg, natid nat,
benefit(nat, np->nat_reserve < arg); benefit(nat, np->nat_reserve < arg);
pr("Military Reserves changed from %ld to %d\n", pr("Military Reserves changed from %ld to %d\n",
np->nat_reserve, arg); np->nat_reserve, arg);
if (np->nat_stat == STAT_NORM) wu(player->cnum, nat,
wu(player->cnum, nat, "Military Reserves changed from %ld to %d by divine intervention.\n",
"Military Reserves changed from %ld to %d by divine intervention.\n", np->nat_reserve, arg);
np->nat_reserve, arg);
np->nat_reserve = arg; np->nat_reserve = arg;
break; break;
case 'c': case 'c':