From 9bf8281b913953681dc13da4207c7d28b6037b64 Mon Sep 17 00:00:00 2001 From: Petr Baudis Date: Sun, 27 Nov 2011 04:16:32 +0100 Subject: [PATCH] dead_body_energy: Scale down from 500 to 200 --- world.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/world.h b/world.h index edb8ddd..2760376 100644 --- a/world.h +++ b/world.h @@ -8,7 +8,7 @@ struct world { const static int defense_cost = -20; const static int sun_energy = 1; - const static int dead_body_energy = 500; + const static int dead_body_energy = 200; const static double dead_body_energy_carryover = 0.5; const static int dead_decay = -1; };