make herb growth code a little more readable.

This commit is contained in:
Enno Rehling 2018-09-22 08:54:17 +02:00
parent e46826a89c
commit 174a91968b

View file

@ -741,11 +741,13 @@ growing_herbs(region * r, const int current_season, const int last_weeks_season)
* Kräuter))% sich zu vermehren. */ * Kräuter))% sich zu vermehren. */
UNUSED_ARG(last_weeks_season); UNUSED_ARG(last_weeks_season);
if (current_season != SEASON_WINTER) { if (current_season != SEASON_WINTER) {
int i; int i, herbs = rherbs(r);
for (i = rherbs(r); i > 0; i--) { for (i = herbs; i > 0; --i) {
if (rng_int() % 100 < (100 - rherbs(r))) if (rng_int() % 100 < (100 - herbs)) {
rsetherbs(r, (short)(rherbs(r) + 1)); ++herbs;
}
} }
rsetherbs(r, herbs);
} }
} }