Remove superfluous parenthesis.
This commit is contained in:
parent
45b9d65129
commit
265e71efa8
2 changed files with 4 additions and 3 deletions
|
@ -183,7 +183,7 @@ plague_people(struct natstr *np, short *vec,
|
|||
}
|
||||
if (*ptime <= 0) {
|
||||
*pstage -= 1;
|
||||
*ptime = (etus / 2) + (random() % etus);
|
||||
*ptime = etus / 2 + random() % etus;
|
||||
}
|
||||
return stage;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue