(do_conv, enli, explore, move, shoo, s_commod): sct_mobil was changed
from u_char to short in 3.0.0, but many assignments still cast to u_char. Remove casts.
This commit is contained in:
parent
5c423d1e42
commit
aebcc536e4
6 changed files with 14 additions and 18 deletions
|
@ -159,7 +159,7 @@ do_conv(struct nstr_sect nstr, int uwtoconvert, int for_real)
|
|||
mob = roundavg(mob * 0.2);
|
||||
if (mob > sect.sct_mobil)
|
||||
mob = sect.sct_mobil;
|
||||
sect.sct_mobil -= (u_char)mob;
|
||||
sect.sct_mobil -= mob;
|
||||
pr("%3d conquered civilians converted in %s (%d)\n",
|
||||
newuw, xyas(sect.sct_x, sect.sct_y, player->cnum), uw + newuw);
|
||||
if (civ == 0) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue