From 193f7a17d2e4ab99ed0cd909c696c3f0b9833041 Mon Sep 17 00:00:00 2001 From: Paweł Redman Date: Thu, 26 Apr 2018 12:32:12 +0200 Subject: Rebalance the game again. --- src/game/unit_soldier.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/game/unit_soldier.cpp') diff --git a/src/game/unit_soldier.cpp b/src/game/unit_soldier.cpp index 1750e2e..969075a 100644 --- a/src/game/unit_soldier.cpp +++ b/src/game/unit_soldier.cpp @@ -58,7 +58,8 @@ unit_soldier_t::unit_soldier_t(game::state_t *game) : unit_t(game, UNIT_SOLDIER) health = max_health = 28; storage.max_shells = storage.shells = 20; - storage.max_grenades = storage.grenades = 3; + storage.grenades = 0; + storage.max_grenades = 3; } static v2f_t spread_aim(v2f_t x, v2f_t aim, float cof, procgen::prng_t *prng) -- cgit