From ed2c1ee11b3249059c0d9348964649f10e67a8eb Mon Sep 17 00:00:00 2001 From: Petr Baudis Date: Sun, 27 Nov 2011 04:17:04 +0100 Subject: [PATCH] move_cost: Scale down from -10 to -5 --- world.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/world.h b/world.h index 2760376..7996644 100644 --- a/world.h +++ b/world.h @@ -3,7 +3,7 @@ struct world { const static int newborn_energy = 500; - const static int move_cost = -10; + const static int move_cost = -5; const static int attack_cost = -40; const static int defense_cost = -20; const static int sun_energy = 1;