From ecde79c1d381a9c885f67f5778ec449b90be6eba Mon Sep 17 00:00:00 2001 From: Christian Schlittchen Date: Sun, 3 Mar 2002 11:52:22 +0000 Subject: [PATCH] *** empty log message *** --- src/common/gamecode/laws.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/common/gamecode/laws.c b/src/common/gamecode/laws.c index a0c6d4604..3ac7794a0 100644 --- a/src/common/gamecode/laws.c +++ b/src/common/gamecode/laws.c @@ -788,14 +788,15 @@ trees(region * r, const int current_season, const int last_weeks_season) if(production(r) <= 0) return; - seedchance = FORESTGROWTH * 250; - /* Jeder Elf in der Region erhöht die Chance um 0.002%. */ - seedchance += (min(elves, (production(r)*MAXPEASANTS_PER_AREA)/8)) * 20; + /* Grundchance 1.0% */ + seedchance = FORESTGROWTH; + /* Jeder Elf in der Region erhöht die Chance um 0.0008%. */ + seedchance += (min(elves, (production(r)*MAXPEASANTS_PER_AREA)/8)) * 8; grownup_trees = rtrees(r, 2); seeds = 0; for(i=0;i