Remove silly superflous parenthesis.

This commit is contained in:
Markus Armbruster 2006-03-26 07:46:49 +00:00
parent beae3ea770
commit 0d0a305bf3
14 changed files with 31 additions and 31 deletions

View file

@ -66,7 +66,8 @@ move_ground(s_char *what, struct sctstr *start, struct sctstr *end,
double mobility = (double)start->sct_mobil;
int dir;
int intcost;
int takedam = (*dam), out = 0;
int takedam = *dam;
int out = 0;
s_char bpath[512];
s_char buf2[512];
s_char prompt[128];
@ -228,7 +229,7 @@ move_ground(s_char *what, struct sctstr *start, struct sctstr *end,
*/
if (takedam && chance(weight / 100.0) &&
((curx != oldx) || (cury != oldy)))
(*dam) += ground_interdict(curx, cury, player->cnum,
*dam += ground_interdict(curx, cury, player->cnum,
"commodities");
if (*dam >= 100)
break;