From 5f43830f5981c43472a8b2620336256c27c87163 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Mon, 28 Nov 2005 08:07:01 +0000 Subject: [PATCH] http://eressea.upb.de/mantis/view.php?id=765 http://eressea.upb.de/mantis/view.php?id=764 PopulationDamage war um Faktor 100 zu hoch. --- src/common/kernel/battle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/kernel/battle.c b/src/common/kernel/battle.c index db1d99403..bb36f4316 100644 --- a/src/common/kernel/battle.c +++ b/src/common/kernel/battle.c @@ -2291,7 +2291,7 @@ PopulationDamage(void) static double value = -1.0; if (value<0) { const char * str = get_param(global.parameters, "battle.populationdamage"); - value = str?atof(str):BATTLE_KILLS_PEASANTS; + value = str?atof(str):(BATTLE_KILLS_PEASANTS/100.0); } return value; }